summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2014-09-11Add/cleanup window commands Ctrl-{n,s,q}Marc André Tanner
2014-09-11Add :qall commandMarc André Tanner
2014-09-11On the prompt Ctrl-{B,E} should move the cursor to the begin/end of the lineMarc André Tanner
2014-09-11In visual mode 'v' should switch to normal modeMarc André Tanner
2014-09-11Add readline Ctrl+U bindingMarc André Tanner
2014-09-10Reindent readline key bindingsMarc André Tanner
2014-09-10Clean up normal mode key bindingsMarc André Tanner
2014-09-10Add normal mode command 's'Marc André Tanner
2014-09-10Add movement 'W'Marc 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-10text-motions: add text_line_prev functionMarc André Tanner
2014-09-10text-motions: fix no match case of text_find_char_{next,prev}Marc André Tanner
These functions should return the original position in case no match was found.
2014-09-10Add normal command 'Y' as a synonym for 'yy'Marc André Tanner
2014-09-10Add normal command 'S' as asynonym for 'cc'Marc André Tanner
2014-09-10Add movements 'B' and 'E'Marc André Tanner
Notice that we currently do not make a distinction between a WORD and a word.
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-10If text has been created from an empty file, store filename upon first saveMarc André Tanner
2014-09-10Keep window focused indication while prompt is shownMarc 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-10Simplify cursor color managementMarc 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-09Unclutter config.def.h by moving stuff to main.cMarc André Tanner
2014-09-09Add window borders in vertical layoutMarc André Tanner
2014-09-09Open all files given on command lineMarc André Tanner
2014-09-09Add infrastructure for commandsMarc André Tanner
2014-09-09Separate different types of text objectsMarc André Tanner
These now have common prefixes which means the whole block can be skipped over if it doesn't match.
2014-09-09Add all 26 marksMarc André Tanner
2014-09-09Add all 26 registersMarc 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-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-08Fix repeat commandMarc André Tanner
Some movements depend on a global action, therefore restore it when repeating an action.
2014-09-08Zero can be both a movement and part of a multiplierMarc André Tanner
2014-09-08Unify variable namingMarc André Tanner
Only textual substitution no functional changes.
2014-09-08Use named struct initializers where appropriateMarc André Tanner
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.