home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
World of A1200
/
World_Of_A1200.iso
/
programs
/
text
/
jed
/
macros
/
indent
< prev
next >
Wrap
Text File
|
1995-02-27
|
354b
|
28 lines
;
; 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)
})