From: Rodney S. <rsp...@mc...> - 2002-02-20 02:36:05
|
mac-emacs-user: To get viper-mode to work you need to comment out lines 96 and 97 of viper-util.el and do a make bootstrap and make install. I was having trouble with C-home and C-end. Part of this might have to do with my using a PowerBook. But, you have to press Ctrl before fn in the fn-home/fn-end combination, i.e. if you are holding down fn before Ctrl, even if you aren't also pressing home or end, it won't work. And you may need to put the following in ~/.emacs: (global-set-key [C-kp-home] 'beginning-of-buffer-nomark) ; C-home (global-set-key [C-kp-end] 'end-of-buffer-nomark) ; C-end If you installed the command modifier patch, then you might also be interested in these: (global-set-key [?\A-q] 'save-buffers-kill-emacs) ; command-q (quit) (global-set-key [?\A-a] 'mark-whole-buffer) ; command-a (select all) Rodney |