home *** CD-ROM | disk | FTP | other *** search
- ;
- ; Startup file for notGNU emacs (notgnu.st).
- ; This form of file can be loaded at anytime using
- ; the extended command load-file.
- ;
- ;
- ; I like to make sure I don't edit a file in 2 places
- ; the default is NOT to check so this turns it on
- ;
- (toggle-check-file-timestamp)
- ;
- ; Various keybindings to make me happy
- ;
- ; "\^x" is ctrl-x
- ; "\F1" is function key F1
- ; "\Eo" is meta-o (or ESC-o)
- ; "\Kp-+" is keypad +
- ;
-
- (global-set-key "\F1" 'goto-line)
- (global-set-key "\E+" 'enlarge-window)
- (global-set-key "\E-" 'shrink-window)
- (global-set-key "\E[" 'start-kbd-macro)
- (global-set-key "\E]" 'end-kbd-macro)
- (global-set-key "\E|" 'call-last-kbd-macro)
- (global-set-key "\^z" 'scroll-one-line-up)
- (global-set-key "\Ez" 'scroll-one-line-down)
- ;
- ; kinda matches VI % match function and gnu emacs
- ; ctrl-% match macro I defined
- ;
- (global-set-key "\E5" 'goto-match)
- (global-set-key "\^c" 'copy-region-as-kill)
- ;
- ; these at end since they will fail in DOS version
- ; because (1) shell-window is not a legal DOS command
- ; and (2) fkeys beyond 10 are not visible
- ;
- (global-set-key "\F7" 'make)
- (global-set-key "\F8" 'next-error)
- ;
- (set-window-size '42,81)
-
-
-
-
-
-
-