summaryrefslogtreecommitdiff
path: root/main.c
AgeCommit message (Collapse)Author
2017-07-14vis: always reduce selections when not in visual modeMarc André Tanner
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é Tanner
2017-07-11vis: handle further input after mark and register specifiersMarc André Tanner
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é Tanner
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é Tanner
2017-07-10vis: simplify and fix pairwise selection intersectionMarc André Tanner
2017-07-10vis: simplify selection complement and minus implementationMarc André Tanner
2017-07-08vis: perform more renames cursor -> selectionMarc André Tanner
To fix compilation you need to update (or remove) config.h.
2017-07-08vis: cleanup marks implementationMarc André Tanner
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é Tanner
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é Tanner
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é Tanner
This window local register holds the last active selections.
2017-06-15vis: normalize selections after pairwise combinationMarc André Tanner
2017-06-15vis: implement pairwise selection combinator: rightmostMarc André Tanner
2017-06-15vis: implement pairwise selection combinator: leftmostMarc André Tanner
2017-06-15vis: implement pairwise selection combinator: shorterMarc André Tanner
2017-06-15vis: implement pairwise selection combinator: longerMarc André Tanner
2017-06-15vis: implement pairwise selection combinator: intersectionMarc André Tanner
2017-06-15vis: implement pairwise selection combinator: unionMarc André Tanner
2017-06-15vis: implement subtraction of selectionsMarc André Tanner
2017-06-15vis: implement complement of selectionsMarc André Tanner
2017-06-15vis: implement intersection of selectionsMarc André Tanner
2017-06-15vis: implement union of selectionsMarc André Tanner
2017-06-15vis: allow selections to be restored from registersMarc André Tanner
2017-06-15vis: allow active selection to be saved to a registerMarc André Tanner
2017-06-15view: do not automatically anchor selections when setting rangeMarc André Tanner
2017-06-15vis: rename uses of Cursor to SelectionMarc André Tanner
2017-06-15view: rename view_cursors_columnMarc André Tanner
2017-06-15view: rename view_cursorsMarc André Tanner
2017-06-15view: rename view_cursors_column{,count,next}Marc André Tanner
2017-06-15view: rename view_cursors_countMarc André Tanner
2017-06-15view: rename view_cursors_nextMarc André Tanner
2017-06-15view: rename view_cursors_prevMarc André Tanner
2017-06-15view: view_cursors_selection_restoreMarc André Tanner
2017-06-15view: rename view_cursors_selection_swapMarc André Tanner
2017-06-15view: rename view_cursors_selection_clearMarc André Tanner
2017-06-15view: rename view_cursors_selection_getMarc André Tanner
2017-06-15view: rename view_cursors_primary_{get,set}Marc André Tanner
2017-06-15view: rename view_cursors_clearMarc André Tanner
2017-06-15view: rename view_cursors_disposeMarc André Tanner
2017-06-15view: rename view_cursors_newMarc André Tanner
2017-06-15view: remove view_cursors_multipleMarc André Tanner
2017-06-15vis: promote selections to first class primitivesMarc André Tanner
This unifies cursors and selections. The cursor are now represendted as singleton selections.
2017-06-01vis: use more portable format string for wchar_tMarc André Tanner
Use upper case Unicode (U+XXXX) notation for `ga`. Fix #568
2017-05-06vis: add doxygen commentsMarc André Tanner
Rename some structures, add typedefs for function pointers, remove unused arguments from vis_run.
2017-05-03text: remove count argument from text_{earlier,later}Marc André Tanner
2017-05-03vis: introduce count iterator to handle interrupted flagMarc André Tanner
2017-04-21vis: implement <C-r> in terms of gPMarc André Tanner
This simplifies the code and ensures consistent behavior.
2017-04-20vis: adapt <C-r> to new register handling codeMarc André Tanner
2017-04-19vis: restructure register handlingMarc André Tanner
Decouple register content from cursors. Previously each cursor had exactly one corresponding register. Now each register can save a list of values whose lifetime is not tied to the cursor. If multiple cursors exist and a put with a register holding only a single value is performed, then this value is inserted at every cursor location. If there are fewer values available than cursors, then only the matching ones will be used. If a register holding multiple values is inserted in a single cursor context, only the first value will be used. Another option would be to join all existing values. The details of this behavior might be changed in the future. <C-r> in insert mode has not yet been adapted and register handling in general needs to be cleaned up further. Fix #527