mirror of
https://salsa.debian.org/debian/debian-reference.git
synced 2026-01-16 23:14:19 +00:00
19 lines
441 B
Text
19 lines
441 B
Text
# vim modeline commands
|
|
|
|
# find bullets
|
|
s/^\([ ]*[-.*0-9]\+\) \+\(.*[^ .]\)[. ]*$
|
|
|
|
# capitalize list to (imprrative) sentence
|
|
s/^\([ ]*[-.*0-9]\+\) \+\(.*[^ .]\)[. ]*$/\1 \u\2./
|
|
|
|
# lowercase list to (infinitive) phrases
|
|
s/^\([ ]*[-.*0-9]\+\) \+\(.*[^ .]\)[., ]*$/\1 \l\2/c
|
|
|
|
# remove tailing spaces
|
|
s/^\(.*[^ ]\) *$/\1/c
|
|
|
|
# change tailing period etc. to nothing
|
|
s/[.;,:]\+ *$//c
|
|
|
|
## make imperative lists
|
|
##s/^\(- \| \* \) *\(.*\)$/\1\u\2./c
|