aboutsummaryrefslogtreecommitdiff
path: root/sam.c
AgeCommit message (Expand)AuthorFilesLines
2016-04-03sam: unify vi(m) and sam command lineMarc André Tanner1-85/+153
2016-04-03sam: restructure code to avoid useless gotoMarc André Tanner1-15/+6
2016-04-03sam: implement s (subtitute) command in terms of sed(1)Marc André Tanner1-3/+13
2016-04-03sam: cleanup command argv passing/handlingMarc André Tanner1-60/+52
2016-04-03sam: simplify and fix groupingMarc André Tanner1-37/+26
2016-04-03sam: attempt to make x/y commands more robustMarc André Tanner1-4/+8
2016-04-03sam: implement > commandMarc André Tanner1-6/+24
2016-04-03sam: implement r (read) command in terms of < catMarc André Tanner1-1/+13
2016-04-03sam: implement < command in terms of | with an empty rangeMarc André Tanner1-1/+13
2016-04-03sam: implement | (filter) commandMarc André Tanner1-4/+81
2016-04-03sam: implement w (write) commandMarc André Tanner1-4/+47
2016-04-03sam: add infrastructure to support multi letter commandsMarc André Tanner1-48/+52
2016-04-03sam: fix escape handling in regex parsingMarc André Tanner1-0/+4
2016-04-03sam: more flexible parsingMarc André Tanner1-22/+124
2016-04-03sam: treat single line numbers as motions not rangesMarc André Tanner1-2/+9
2016-04-03sam: remove old cursor/selection before executing commandMarc André Tanner1-1/+12
2016-04-03sam: fix default regexp handling i.e. ':sam x'Marc André Tanner1-1/+1
2016-04-03sam: adapt to changes in multiple cursors APIMarc André Tanner1-10/+7
2016-04-03sam: fix negative relative line number placementMarc André Tanner1-7/+11
2016-04-03sam: change print command behavior when given an empty rangeMarc André Tanner1-6/+23
2016-04-03sam: fix empty regexp matchesMarc André Tanner1-6/+13
2016-04-03sam: fix regex parsingMarc André Tanner1-32/+5
2016-04-03sam: fix parsing of , compound addressMarc André Tanner1-5/+2
2016-04-03sam: do not segfault when given a NULL pointer to parseMarc André Tanner1-0/+2
2016-04-03sam: fix segfault with multiple regular expressions in same commandMarc André Tanner1-29/+17
2016-04-03Support sam's structural regular expression based command languageMarc André Tanner1-0/+800