aboutsummaryrefslogtreecommitdiff
path: root/vis.c
AgeCommit message (Collapse)AuthorFilesLines
2014-09-10Add comments where appropriateMarc André Tanner1-55/+128
2014-09-09Cleanup header filesMarc André Tanner1-0/+2
2014-09-09Remove trailing whitespaces (sed 's/[ \t]*$//')Marc André Tanner1-4/+4
2014-09-09Rename vis.[ch] to editor.[ch] and main.c to vis.cMarc André Tanner1-391/+910
2014-09-09Add window borders in vertical layoutMarc André Tanner1-2/+4
2014-09-09Detect whether a file is already opened when splitting a windowMarc André Tanner1-3/+13
2014-09-09Fix a few memory leaksMarc André Tanner1-14/+44
2014-09-08Improve undo/redoMarc André Tanner1-18/+0
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é Tanner1-51/+0
2014-09-08Add user prompt infrastructureMarc André Tanner1-0/+126
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é Tanner1-6/+10
This will be used to implement a command prompt window.
2014-09-04Implement movement to a given lineMarc André Tanner1-6/+0
2014-09-04Implement rudimentary mark handlingMarc André Tanner1-15/+0
2014-09-03Rudimentary support for copy / paste via registersMarc André Tanner1-0/+1
2014-09-01Refactor frontend codeMarc André Tanner1-175/+341
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é Tanner1-33/+3
Still very incomplete
2014-08-24Add work in progress editor frontendMarc André Tanner1-0/+264