aboutsummaryrefslogtreecommitdiff
path: root/vis-operators.c
AgeCommit message (Collapse)AuthorFilesLines
2015-11-28vis: add cmd argument to VIS_OP_FILTERMarc André Tanner1-1/+2
2015-11-27vis: implement filter operator !Marc André Tanner1-0/+6
It currently works by switching to visual mode and then opening the command prompt with a default range which refers to the currently active selection.
2015-11-17vis: put in visual mode should replace the current selectionMarc André Tanner1-2/+8
There are some combinations (e.g. line wise selection / character wise register content) which should probably be improved further. Also since vis currently neither supports the numbered registers "0 - "9 nor the small delete register "- the deleted text is not stored in any register. Notice that we can't call op_delete in the implementation because it would overwrite the register content we want to paste. Closes #113
2015-11-07vis: prefix enum VisOperator values with VIS_Marc André Tanner1-40/+27
2015-11-07vis: move operators to separate fileMarc André Tanner1-0/+226