summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2014-09-08Make Home/End keys work in command promptMarc André Tanner
2014-09-08Fix insertion of newlinesMarc André Tanner
2014-09-08Add user prompt infrastructureMarc André Tanner
This is implemented by means of an one line height editor window and a set of custom key bindings.
2014-09-06Add visual mode key bindingsMarc André Tanner
2014-09-06Add insert mode key bindingsMarc André Tanner
2014-09-05Implement movement to column in lineMarc André Tanner
2014-09-05Make status window optionalMarc André Tanner
This will be used to implement a command prompt window.
2014-09-05Cleanup vis.hMarc André Tanner
2014-09-05Fix missuse of cursor instead of call in config.def.hMarc André Tanner
2014-09-05Update nano keybindings to infrastructure changesMarc André Tanner
2014-09-05In visual mode operators should operate on the selected textMarc André Tanner
2014-09-05Remember whether the register content is linewiseMarc André Tanner
2014-09-05Add helper function which finds the start of the next lineMarc André Tanner
2014-09-05Remove cruft from config.def.hMarc André Tanner
2014-09-04Skip modes with common prefix if it does not matchMarc André Tanner
2014-09-04Implement movement to a given lineMarc André Tanner
2014-09-04Fix action multiplierMarc André Tanner
2014-09-04Implement to/till movements i.e. 'f', 'F', 't', 'T'Marc André Tanner
2014-09-04Factor out getkey logicMarc André Tanner
2014-09-04text-motion: fix find_char_prevMarc André Tanner
2014-09-04Implement rudimentary mark handlingMarc André Tanner
2014-09-03Rudimentary support for copy / paste via registersMarc André Tanner
2014-09-03Enable text objects, introduce operator optionsMarc André Tanner
2014-09-03Introduce a logical line as text-objectMarc André Tanner
2014-09-03Fix cursor placement after delete operationMarc André Tanner
2014-09-02First try at a repeat command i.e. '.'Marc André Tanner
2014-09-02Teach window_cursor_to how to display the end of the fileMarc André Tanner
2014-09-02Fix MakefileMarc André Tanner
2014-09-01Refactor frontend codeMarc André Tanner
window.[ch] now contains a somewhat generic editor window which is then enhanced in vis.[ch] with a statusbar.
2014-08-31First part of a vi like frontendMarc André Tanner
Still very incomplete
2014-08-31Expose various text objects with individual functionsMarc André Tanner
2014-08-31Add rudimentary register implementationMarc André Tanner
2014-08-30Add trivial text motions to start and end of fileMarc André Tanner
2014-08-30Add support for backticks to movement and text objectMarc André Tanner
2014-08-28text-objects: add objects delimited by brackets or quotesMarc André Tanner
2014-08-28motion: improve matching of single and double quotesMarc André Tanner
2014-08-28text-object: make word object behave more like in vimMarc André Tanner
2014-08-28text-object: correctly detect word boundriesMarc André Tanner
2014-08-28motion: fix movement to previous word end when right beforeMarc André Tanner
2014-08-28text: fix iterator_char{prev,next} to accept NULL argumentMarc André Tanner
2014-08-28motion: add character wise motionMarc André Tanner
2014-08-28Improve text motionsMarc André Tanner
2014-08-25Move motion related stuff into own fileMarc André Tanner
2014-08-24Add work in progress editor frontendMarc André Tanner
2014-08-24Add license headerMarc André Tanner
2014-08-23Share common macros in util.hMarc André Tanner
2014-08-23text: invalidate line <-> pos mapping upon undo/redoMarc André Tanner
2014-08-23text: redesing mark implementationMarc André Tanner
Previously a mark was a byte offset from the start of the file which required updates whenever a text modification happened before it. Now it is simply a pointer into the underlying (mostly) append only buffer which remains valid throughout the whole life cycle.
2014-08-23text: refactor piece_getMarc André Tanner
2014-08-14Remove useless replace APIMarc André Tanner
The removed junk might not have the same length as the newly inserted one.