aboutsummaryrefslogtreecommitdiff
path: root/main.c
AgeCommit message (Collapse)AuthorFilesLines
2018-02-27vis: implement normal/outer paragraph text objectMarc André Tanner1-0/+6
2018-02-27vis: reset count after window scroll/slide actionsMarc André Tanner1-0/+2
Previously something like n<C-e> would also apply the count `n` to the subsequent action.
2017-12-08vis: let <C-c> behave as <Escape> if only one selection existsMarc André Tanner1-1/+1
This should allow the :-command prompt to be closed with <C-c><C-c> (from insert mode) or <C-c> (from normal mode). Fix #608
2017-09-15vis: remove ! operatorMarc André Tanner1-19/+0
Use visual mode and :| to filter text through external commands. The mapping was already reused for selection complement.
2017-07-27vis: ignore SIGQUITMarc André Tanner1-2/+2
Pressing Ctrl+\ should probably not terminate the editor. In previous versions libtermkey would disable signal generation by disabling termios VQUIT. However, curses probably overrides it when they both fight for terminal settings. This should probably be cleaned up at some point. Ignoring SIGQUIT seems like a good idea anyway.
2017-07-17vis: specify window in mark related APIMarc André Tanner1-6/+12
This should also fix coverity issue 157024.
2017-07-17vis: fix coverity issue 157025Marc André Tanner1-2/+4
The static analyzer can currently not infere that there always exists at least one selection.
2017-07-14vis: always reduce selections when not in visual modeMarc André Tanner1-12/+14
For now we only allow singleton selections in normal mode, this might change in the future.
2017-07-14vis-lua: make selection first class primitives in Lua APIMarc André Tanner1-4/+3
2017-07-11vis: handle further input after mark and register specifiersMarc André Tanner1-10/+15
This fixes #531 in a more robust way. The key handling functions should be able to handle additional input passed to them as is for example the case when processing the `gv` mapping.
2017-07-10vis: remove change listMarc André Tanner1-12/+0
This was completely broken since 71eab6d5d72145f17ab3d4c87945ac12176ae8e9 and even before never really worked as one would expect. If anything it should be implemented like the jump list using marks.
2017-07-10vis: implement jump list in terms of marksMarc André Tanner1-2/+20
2017-07-10vis: simplify and fix pairwise selection intersectionMarc André Tanner1-1/+1
2017-07-10vis: simplify selection complement and minus implementationMarc André Tanner1-5/+3
2017-07-08vis: perform more renames cursor -> selectionMarc André Tanner1-129/+129
To fix compilation you need to update (or remove) config.h.
2017-07-08vis: cleanup marks implementationMarc André Tanner1-73/+23
We now use ' to refer to marks. Mark a is set using 'am and restored using 'aM while this is slightly harder to type than ma and 'a it is consistent with register usage for yank/put and allows a default mark to be used which is handy for quick selection manipulation primitives.
2017-07-07vis: use marks instead of registers to store selectionsMarc André Tanner1-1/+4
The key binding remain the same, but the selections are now stored on a per-buffer basis.
2017-07-05vis: make sure all selections have same anchored stateMarc André Tanner1-7/+17
With the current model the differences between normal and visual mode is that in the latter selections are anchored (meaning one endpoint remains fixed), while in normal mode both endpoints can in principle be updated simultaneously (currently they are always colapsed to a singleton selection, giving the impression of cursors).
2017-07-04vis: implement `gv` by means of new "^ registerMarc André Tanner1-21/+0
This window local register holds the last active selections.
2017-06-15vis: normalize selections after pairwise combinationMarc André Tanner1-0/+26
2017-06-15vis: implement pairwise selection combinator: rightmostMarc André Tanner1-0/+15
2017-06-15vis: implement pairwise selection combinator: leftmostMarc André Tanner1-0/+15
2017-06-15vis: implement pairwise selection combinator: shorterMarc André Tanner1-0/+17
2017-06-15vis: implement pairwise selection combinator: longerMarc André Tanner1-0/+17
2017-06-15vis: implement pairwise selection combinator: intersectionMarc André Tanner1-0/+13
2017-06-15vis: implement pairwise selection combinator: unionMarc André Tanner1-0/+42
2017-06-15vis: implement subtraction of selectionsMarc André Tanner1-0/+36
2017-06-15vis: implement complement of selectionsMarc André Tanner1-0/+40
2017-06-15vis: implement intersection of selectionsMarc André Tanner1-0/+42
2017-06-15vis: implement union of selectionsMarc André Tanner1-0/+59
2017-06-15vis: allow selections to be restored from registersMarc André Tanner1-0/+18
2017-06-15vis: allow active selection to be saved to a registerMarc André Tanner1-0/+18
2017-06-15view: do not automatically anchor selections when setting rangeMarc André Tanner1-0/+2
2017-06-15vis: rename uses of Cursor to SelectionMarc André Tanner1-76/+76
2017-06-15view: rename view_cursors_columnMarc André Tanner1-4/+4
2017-06-15view: rename view_cursorsMarc André Tanner1-13/+13
2017-06-15view: rename view_cursors_column{,count,next}Marc André Tanner1-8/+8
2017-06-15view: rename view_cursors_countMarc André Tanner1-7/+7
2017-06-15view: rename view_cursors_nextMarc André Tanner1-12/+12
2017-06-15view: rename view_cursors_prevMarc André Tanner1-2/+2
2017-06-15view: view_cursors_selection_restoreMarc André Tanner1-1/+1
2017-06-15view: rename view_cursors_selection_swapMarc André Tanner1-1/+1
2017-06-15view: rename view_cursors_selection_clearMarc André Tanner1-1/+1
2017-06-15view: rename view_cursors_selection_getMarc André Tanner1-12/+12
2017-06-15view: rename view_cursors_primary_{get,set}Marc André Tanner1-11/+11
2017-06-15view: rename view_cursors_clearMarc André Tanner1-1/+1
2017-06-15view: rename view_cursors_disposeMarc André Tanner1-5/+5
2017-06-15view: rename view_cursors_newMarc André Tanner1-3/+3
2017-06-15view: remove view_cursors_multipleMarc André Tanner1-6/+6
2017-06-15vis: promote selections to first class primitivesMarc André Tanner1-25/+6
This unifies cursors and selections. The cursor are now represendted as singleton selections.