summaryrefslogtreecommitdiff
path: root/vis.c
AgeCommit message (Collapse)Author
2014-09-11Add :qall commandMarc André Tanner
2014-09-10Add normal mode command 'J'Marc André Tanner
2014-09-10Add normal mode commands 'O' and 'o'Marc André Tanner
2014-09-10Make movements to next / previous line availableMarc André Tanner
2014-09-10Add normal command 'S' as asynonym for 'cc'Marc André Tanner
2014-09-10Add normal mode commands 'A', 'C', 'D' and 'I'Marc André Tanner
2014-09-10Add normal mode key binding for 'r'Marc André Tanner
2014-09-10Add a few comments about the subtleties of mode switchingMarc André Tanner
2014-09-10Redraw editor content after command executionMarc André Tanner
2014-09-10Fix :q commandMarc André Tanner
2014-09-10Add license headerMarc André Tanner
2014-09-10Simplify drawing of the window statusbarMarc André Tanner
2014-09-10Add comments where appropriateMarc André Tanner
2014-09-09Cleanup header filesMarc André Tanner
2014-09-09Remove trailing whitespaces (sed 's/[ \t]*$//')Marc André Tanner
2014-09-09Rename vis.[ch] to editor.[ch] and main.c to vis.cMarc André Tanner
2014-09-09Add window borders in vertical layoutMarc André Tanner
2014-09-09Detect whether a file is already opened when splitting a windowMarc André Tanner
2014-09-09Fix a few memory leaksMarc André Tanner
2014-09-08Improve undo/redoMarc André Tanner
Currently a snapshot is taken whenever an operator is completed or a certain idle time in either insert or replace mode is detected.
2014-09-08Hook up search as a movementMarc 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-05Make status window optionalMarc André Tanner
This will be used to implement a command prompt window.
2014-09-04Implement movement to a given lineMarc André Tanner
2014-09-04Implement rudimentary mark handlingMarc André Tanner
2014-09-03Rudimentary support for copy / paste via registersMarc 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-24Add work in progress editor frontendMarc André Tanner