summaryrefslogtreecommitdiff
path: root/main.c
AgeCommit message (Collapse)Author
2015-11-08vis: remove regex based syntax highlightingMarc André Tanner
2015-11-07vis: prefix enum VisMotion values with VIS_Marc André Tanner
2015-11-07vis: tweak enum VisTextObject namesMarc André Tanner
2015-11-07vis: prefix enum VisOperator values with VIS_Marc André Tanner
2015-11-07vis: API documentation and cleanupMarc André Tanner
2015-11-03vis: make open line commands (o and O) repeatableMarc André Tanner
The implementation of O is a bit of a hack and has a few issues: - does not respect auto indentation settings - does not meaningfully repeat when given a count
2015-11-03vis: make single character replace (r command) repeatableMarc André Tanner
2015-11-02vis: make I command repeatableMarc André Tanner
2015-11-02vis: make append (a and A) commands repeatableMarc André Tanner
2015-10-31vis: adapt some comments to new input handling codeMarc André Tanner
2015-10-27vis: make Vis an opaque type, hide implementaton detailsMarc André Tanner
2015-10-27vis: introduce vis_prompt_enter APIMarc André Tanner
This is a really bad API/abtraction but at least it allows us to hide some implementation details.
2015-10-27vis: clean up tab/newline insertion codeMarc André Tanner
2015-10-27vis: introduce pseudo operators for putMarc André Tanner
In principle put is not really an operator, however it still should be repeatable and respect count.
2015-10-26vis: introduce explicit operators for cursor creationMarc André Tanner
2015-10-26vis: introduce explicit operators for case changesMarc André Tanner
2015-10-26vis: move key handling functions to main.cMarc André Tanner
2015-10-23vis: begin librarization of core vis primitivesMarc André Tanner
2014-09-09Rename vis.[ch] to editor.[ch] and main.c to vis.cMarc André Tanner
2014-09-09Unclutter config.def.h by moving stuff to main.cMarc André Tanner
2014-09-09Open all files given on command lineMarc André Tanner
2014-09-09Add infrastructure for commandsMarc André Tanner
2014-09-09Fix a few memory leaksMarc André Tanner
2014-09-09Change mode input prototypeMarc 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-05Cleanup vis.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-04Factor out getkey logicMarc André Tanner
2014-09-03Enable text objects, introduce operator optionsMarc 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.