| Age | Commit message (Collapse) | Author | Files | Lines | |
|---|---|---|---|---|---|
| 2015-12-20 | vis: fix forceful redraw <C-l> | Marc André Tanner | 1 | -0/+1 | |
| 2015-11-08 | Fix warnings found by static analyzer | Marc André Tanner | 1 | -1/+1 | |
| 2015-11-08 | Remove trailing white space from source files | Marc André Tanner | 1 | -1/+1 | |
| 2015-11-08 | vis: implement :set colorcolumn | Marc André Tanner | 1 | -0/+1 | |
| 2015-11-08 | vis: implement :set cursorline | Marc André Tanner | 1 | -0/+2 | |
| 2015-11-08 | vis: experimental support for lua/lpeg based syntax highlighting | Marc André Tanner | 1 | -1/+8 | |
| The lua based lexers are searched in the following order: $VIS_PATH/lexers $HOME/.vis/lexers /usr/share/vis/lexers followed by the standard lua package.path | |||||
| 2015-11-07 | vis: API documentation and cleanup | Marc André Tanner | 1 | -1/+0 | |
| 2015-10-26 | vis: merge editor.c into vis.c | Marc André Tanner | 1 | -2/+2 | |
| 2015-10-22 | ui: introduce and use ui specific die(...) function | Marc André Tanner | 1 | -0/+1 | |
| 2015-10-15 | ui: cleanup redrawing | Marc André Tanner | 1 | -1/+0 | |
| 2015-10-14 | view: cleanup whitespace replacement symbol handling | Marc André Tanner | 1 | -1/+5 | |
| 2015-10-14 | view: cleanup option handling | Marc André Tanner | 1 | -1/+2 | |
| 2015-10-14 | ui: refactor syntax style definitions | Marc André Tanner | 1 | -3/+7 | |
| 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 | |||||
| 2015-10-05 | vis: rework input handling using libtermkey | Marc André Tanner | 1 | -6/+3 | |
| Key bindings are now specified as symbolic key strings, this will eventually allow run time configurable key mappings. This introduces a bulid time dependency on libtermkey which can be found at: http://www.leonerd.org.uk/code/libtermkey/ | |||||
| 2015-07-26 | vis: add infrastructure to support multiple cursors/selections | Marc André Tanner | 1 | -1/+0 | |
| This cleans up the existing selection handling code and adds the necessary bits to eventually support multiple cursors/selections. The cursor position is kept track of using marks, which means retrieving the cursor position is no longer a constant time operation. Furthermore the terminal cursor is no longer used, instead the whole window is redrawn after every cursor movement. | |||||
| 2015-07-21 | ui: further separate curses related user interface code | Marc André Tanner | 1 | -1/+0 | |
| By now ui-curses.[hc] are the only files dealing directly with curses related functions. Integration of a proper mainloop is still pending. | |||||
| 2015-07-09 | ui: move terminal state handling code to ui specific file | Marc André Tanner | 1 | -0/+2 | |
| 2015-07-09 | ui: move input handling code to ui specific files | Marc André Tanner | 1 | -4/+7 | |
| 2015-07-06 | Move filename from Text to File | Marc André Tanner | 1 | -3/+3 | |
| Also apply syntax rules every time the file name changes. | |||||
| 2015-04-22 | Rename window.[ch] to view.[ch] | Marc André Tanner | 1 | -1/+1 | |
| 2015-04-22 | More renames, no functional changes | Marc André Tanner | 1 | -2/+2 | |
| Win -> View, window_* -> view_* | |||||
| 2015-04-07 | Set '< and '> marks | Marc André Tanner | 1 | -3/+2 | |
| 2015-04-03 | Add option to display relative line numbers | Marc André Tanner | 1 | -2/+3 | |
| :set rnu Based on a patch by Sebastian Götte. | |||||
| 2015-04-03 | Preliminary user interface separation | Marc André Tanner | 1 | -0/+58 | |
| In theory only ui-curses.[hc] should depend on curses, however in practice keyboard input is still handled in vis.c. Furthermore the syntax definitions as well as keyboard bindings and selection code in window.c still depends on some curses constants. There is also a slight regression in that the window status bar does not show the current mode name. This and related global state should be eliminated in the future. | |||||
