| Age | Commit message (Collapse) | Author | Files | Lines | |
|---|---|---|---|---|---|
| 2015-10-27 | vis: clean up tab/newline insertion code | Marc André Tanner | 3 | -60/+48 | |
| 2015-10-27 | vis: introduce pseudo operators for put | Marc André Tanner | 3 | -35/+34 | |
| In principle put is not really an operator, however it still should be repeatable and respect count. | |||||
| 2015-10-26 | vis: introduce explicit operators for cursor creation | Marc André Tanner | 3 | -14/+11 | |
| 2015-10-26 | vis: introduce explicit operators for case changes | Marc André Tanner | 3 | -19/+27 | |
| 2015-10-26 | vis: move key handling functions to main.c | Marc André Tanner | 5 | -1978/+2030 | |
| 2015-10-26 | vis: merge editor.c into vis.c | Marc André Tanner | 8 | -913/+837 | |
| 2015-10-25 | vis: introduce vis_key_next API | Marc André Tanner | 2 | -5/+5 | |
| 2015-10-25 | vis: introduce vis_register_{get,set} API | Marc André Tanner | 2 | -6/+29 | |
| 2015-10-25 | vis: introduce vis_count_{get,set} API | Marc André Tanner | 2 | -9/+22 | |
| 2015-10-25 | vis: introduce vis_motion_type API | Marc André Tanner | 2 | -1/+12 | |
| 2015-10-25 | vis: clean up mark handling | Marc André Tanner | 4 | -23/+24 | |
| 2015-10-25 | vis: convert jumplist navigation to proper motions | Marc André Tanner | 5 | -59/+45 | |
| 2015-10-25 | vis: convert changelist navigation to proper motions | Marc André Tanner | 5 | -48/+52 | |
| 2015-10-25 | vis: introduce vis_repeat API | Marc André Tanner | 2 | -5/+11 | |
| 2015-10-25 | vis: introduce macro API | Marc André Tanner | 2 | -37/+83 | |
| 2015-10-25 | vis: introduce vis_keys API | Marc André Tanner | 2 | -4/+5 | |
| 2015-10-25 | vis: introduce vis_cmd API | Marc André Tanner | 2 | -4/+6 | |
| 2015-10-25 | vis: introduce vis_textobject API | Marc André Tanner | 2 | -32/+39 | |
| 2015-10-25 | vis: introduce vis_motion API | Marc André Tanner | 3 | -126/+151 | |
| 2015-10-23 | vis: introduce vis_mode_switch API | Marc André Tanner | 3 | -15/+22 | |
| 2015-10-23 | vis: introduce vis_operator API | Marc André Tanner | 2 | -23/+29 | |
| 2015-10-23 | vis: begin librarization of core vis primitives | Marc André Tanner | 5 | -127/+154 | |
| 2015-10-22 | vis: refactor startup code | Marc André Tanner | 2 | -32/+35 | |
| 2015-10-22 | ui: introduce and use ui specific die(...) function | Marc André Tanner | 3 | -20/+26 | |
| 2015-10-22 | vis: overhaul signal handling | Marc André Tanner | 1 | -25/+26 | |
| 2015-10-22 | vis: remove config selection based on argv[0] | Marc André Tanner | 3 | -32/+1 | |
| I would still like to experiment with a busybox style editor multiplexer which behaves like vi(m), emacs or nano depending on argv[0]. | |||||
| 2015-10-22 | vis: remove global state from key input handling | Marc André Tanner | 2 | -14/+7 | |
| 2015-10-22 | vis: remove yet more global state | Marc André Tanner | 2 | -57/+59 | |
| 2015-10-22 | vis: remove yet more global state from motion functions | Marc André Tanner | 2 | -14/+14 | |
| 2015-10-22 | vis: rename motion type | Marc André Tanner | 2 | -10/+10 | |
| 2015-10-22 | vis: remove more global state from motion functions | Marc André Tanner | 2 | -40/+43 | |
| 2015-10-22 | vis: pass editor instance to keyboard action functions | Marc André Tanner | 3 | -167/+167 | |
| 2015-10-22 | vis: remove more global state | Marc André Tanner | 1 | -23/+23 | |
| 2015-10-22 | vis: pass editor instance to command handling funcitons | Marc André Tanner | 2 | -58/+58 | |
| 2015-10-22 | vis: pass editor instance to mode handling functions | Marc André Tanner | 3 | -23/+23 | |
| 2015-10-22 | vis: refactor operator implementation | Marc André Tanner | 2 | -34/+28 | |
| Pass editor instance and text to operate on as parameter instead of using global state. | |||||
| 2015-10-22 | vis: include :-commands in :help output | Marc André Tanner | 1 | -0/+4 | |
| 2015-10-22 | vis: improve :help text, add separate status mode names | Marc André Tanner | 4 | -10/+38 | |
| 2015-10-22 | text: introduce text_appendf utility function | Marc André Tanner | 2 | -0/+9 | |
| 2015-10-22 | vis: correct typos in help text | David B. Lamkins | 1 | -18/+18 | |
| 2015-10-20 | view: ensure minimal window size | Marc André Tanner | 1 | -0/+4 | |
| Do not create empty windows, more importantly do not overwrite random memory. Closes #80 | |||||
| 2015-10-15 | vis: preserve ui options when splitting windows | Marc André Tanner | 1 | -2/+8 | |
| Closes #72 | |||||
| 2015-10-15 | ui: add uniform function prefix | Marc André Tanner | 1 | -22/+22 | |
| Not strictly necessary since those are static, but still nicer. | |||||
| 2015-10-15 | ui: cleanup redrawing | Marc André Tanner | 4 | -64/+61 | |
| 2015-10-15 | vis: alias <C-h> to <Backspace> | Marc André Tanner | 1 | -0/+4 | |
| libtermkey-0.18 does no longer treat them as equal. | |||||
| 2015-10-14 | vis: introduce special keys which allow mappings to editor actions | Marc André Tanner | 3 | -1/+44 | |
| Key bindings in vis are always recursive, hence mapping ~ to ~l will cause an infinite loop. Instead vis supports special editor "keys" which map to internal editor functions. As an example one can thus map ~ to <vis-operator-case-swap>l or even <vis-operator-case-swap><cursor-char-next> Furthermore this makes it possible to completely unmap core editor features such as operators, the corresponding funtionality is still available via its corresponding special key. | |||||
| 2015-10-14 | vis: fix name clash of keyboard actions | Marc André Tanner | 1 | -2/+2 | |
| 2015-10-14 | view: cleanup whitespace replacement symbol handling | Marc André Tanner | 4 | -39/+37 | |
| 2015-10-14 | view: cleanup option handling | Marc André Tanner | 7 | -23/+46 | |
| 2015-10-14 | ui: refactor syntax style definitions | Marc André Tanner | 7 | -194/+590 | |
| Styles can now be specified as strings which will make them easier to specify from outside the editor. The following style attributes can be given in a comma separated list: bold italics underlined fore:color back:color where color is either a hex value of the form #aabbcc or one of the predefined colors: black red green yellow blue magenta cyan white | |||||
