On Tue, 2002-05-21 at 23:25, Angus Lees wrote: > a quick hyper-apropos (C-h a) search for "wheel" in xemacs turned up
I didn't know about that command! On FSF Emacs it's given me the mouse-wheel-mode mode which works a treat. I just need to work out how to turn it on by default...? > mwheel.el. this contains the simple (mwheel-install) command, which > should make it Just Work. > > judging from the lack of "synched with FSF version blah" comments in > mwheel.el, it's highly likely that this is an xemacs-specific answer > though :( > > > 2) I've got the end key jumping to the end of line, how do I get the > > home key to go to the start of the line? > > 3) Last thing, how do I make say ctrl-home go to the end of the > > document? > > again, xemacs already does exactly what you want. > > this is from the default keydefs.el: > > ;; movement to the limits > (define-key global-map 'home 'beginning-of-line) > (define-key global-map 'end 'end-of-line) > (define-key global-map '(control home) 'beginning-of-buffer) > (define-key global-map '(control end) 'end-of-buffer) > (define-key global-map 'kp-home 'beginning-of-line) > (define-key global-map 'kp-end 'end-of-line) > (define-key global-map '(control kp-home) 'beginning-of-buffer) > (define-key global-map '(control kp-end) 'end-of-buffer) > > i presume this will also work on FSF emacs. > > -- > - Gus > -- > SLUG - Sydney Linux User's Group - http://slug.org.au/ > More Info: http://lists.slug.org.au/listinfo/slug -- ************** * Simon Wong * ************** -- SLUG - Sydney Linux User's Group - http://slug.org.au/ More Info: http://lists.slug.org.au/listinfo/slug
