all repos — acme @ ccb2aa148e25e4033cd89583ab7f7f3a04d701d3

fork of the acme editor from plan9port - keybinds, tweaks, config.h, etc

Toolbox (raw)

1
2
3
4
5
6
7
8
9
# 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