9 lines
No EOL
361 B
Text
9 lines
No EOL
361 B
Text
# Compiled Edit scripts
|
|
|
|
[ Edit 1,$-1d ] # clear win
|
|
[ Edit x/^[ ]*/ a/# / ] # comment (replace # with comment prefix)
|
|
[ Edit x/^[ ]*# ?/ x/# ?/d ] # uncomment (replace # with comment prefix)
|
|
[ Edit s/^([ ][ ]|[\t]//g ] # unindent (2 spaces or tab)
|
|
[ Edit s/^/ /g ] # indent 2 spaces
|
|
[ Edit s/^/\t/g ] #indent tabs
|
|
[ Edit x/[^\n]\n[^\n]/ s/\n/ / ] # join lines |