home *** CD-ROM | disk | FTP | other *** search
-
- ;
- ; INDENT
- ;
- ; keybindings for Allman-style C indentation,
- ;
-
- (bind `alt \{'
- {
- ; If you prefer K&R style indents change the next command to
- ; (move `r' 1)
- (split)
- (insert `a' ~\{)
- (split)
- (insert `a' ~\})
- (move `u' 1)
- (split)
- (move `rt' 1)
- })
-
- (bind `alt \}'
- {
- (find `s' `\}')
- (find `n')
- (move `r' 1)
- })
-
-