| Age | Commit message (Collapse) | Author | Files | Lines | |
|---|---|---|---|---|---|
| 2015-04-22 | More renames, no functional changes | Marc André Tanner | 1 | -12/+12 | |
| Win -> View, window_* -> view_* | |||||
| 2015-04-22 | More renaming vis->win->view instead of vis->win->win | Marc André Tanner | 1 | -8/+8 | |
| 2015-04-22 | Better variable naming (VisText -> File) | Marc André Tanner | 1 | -4/+4 | |
| Therefore vis->win->text->data becomes vis->win->file->text. | |||||
| 2015-04-21 | Implement ';' and ',' | Marc André Tanner | 1 | -0/+2 | |
| This fixes #45 | |||||
| 2015-04-15 | Highlight null directive. | noname | 1 | -1/+1 | |
| 2015-04-12 | Add javascript syntax highlighting | John W. Trengrove | 1 | -0/+27 | |
| 2015-04-11 | Recognize g~ as case swap operator | Marc André Tanner | 1 | -0/+1 | |
| 2015-04-11 | Remove global mode state | Marc André Tanner | 1 | -2/+2 | |
| Once again show mode in window status bar. | |||||
| 2015-04-11 | Move structs to editor.h remove global action{,_prev} | Marc André Tanner | 1 | -5/+5 | |
| 2015-04-11 | Eliminate global state for repetition of last modification | Marc André Tanner | 1 | -4/+4 | |
| 2015-04-07 | Show cursor in visual mode | Marc André Tanner | 1 | -0/+2 | |
| 2015-04-07 | Add basic Lua syntax highlighting support | Marcel Rodrigues | 1 | -0/+45 | |
| 2015-04-05 | Introduce new struct VisText | Marc André Tanner | 1 | -4/+4 | |
| This adds yet another layer of indirection and stores vi related stuff which is associated with a given text but shared among all windows displaying it (e.g. marks). This will also help if one wants to keep texts arround which aren't currently displayed. | |||||
| 2015-04-03 | Preliminary user interface separation | Marc André Tanner | 1 | -22/+0 | |
| 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. | |||||
| 2015-04-03 | Fixed multiline comment regexp. | noname | 1 | -4/+4 | |
| Comments like "/***/" with odd number of asterisks are handled like normal comments now. Previously they were handled like unfinished comments. | |||||
| 2015-03-31 | Add hack to make CTRL-w CTRL-h work | Marc André Tanner | 1 | -1/+2 | |
| 2015-03-30 | Add additional key mappings for window switching | Odin Dutton | 1 | -0/+4 | |
| 2015-03-24 | Implement 'o' in visual mode: go to other end of selection. | Marcel Rodrigues | 1 | -0/+1 | |
| 2015-03-20 | Add additional key mappings for window switching | Marc André Tanner | 1 | -0/+3 | |
| This closes #35 and closes #36. | |||||
| 2015-03-18 | Cleanup :-command implementation | Marc André Tanner | 1 | -18/+22 | |
| Everything that is a unique prefix should now be allowed for a given command. | |||||
| 2015-02-06 | Delete key in visual mode should delete selection | Marc André Tanner | 1 | -0/+1 | |
| This might or might not work depending on terminfo entries etc. | |||||
| 2015-01-18 | Fix :saveas command definition | Marc André Tanner | 1 | -1/+1 | |
| 2015-01-17 | Introduce basic PHP syntax highlighting support | Jörg Alberto | 1 | -0/+43 | |
| 2015-01-14 | Remove nano like frontend for now | Marc André Tanner | 1 | -71/+0 | |
| If time permits I still want to experiment with different editing paradigms and write a proper nano/sandy/sam frontend but at the moment it is just bitrotting and not very useful. | |||||
| 2015-01-14 | Accept unique prefixes as :commands | Marc André Tanner | 1 | -17/+17 | |
| The proper way to do this would be to use a trie, however the ugly regexes do the trick for now. | |||||
| 2015-01-13 | Make J also join lines spanning multiple screen lines | Marc André Tanner | 1 | -1/+1 | |
| 2015-01-13 | Change default line up/down movements to match vim | Marc André Tanner | 1 | -8/+12 | |
| 2015-01-12 | Change ledger syntax regex to work with BSD regex | Philip Linde | 1 | -5/+5 | |
| 2015-01-11 | Print prettier status bar when given no file name | Marc André Tanner | 1 | -1/+2 | |
| 2015-01-11 | Merge branch 'ledger-syntax' of https://github.com/clehner/vis | Marc André Tanner | 1 | -1/+42 | |
| 2015-01-10 | Add syntax rules for Ledger journals | Charles Lehner | 1 | -0/+41 | |
| 2015-01-09 | Add rudimentary markdown syntax support | jvoisin | 1 | -0/+31 | |
| The spec is here: http://daringfireball.net/projects/markdown/syntax Currently, it doesn't support Setext headers and hard-wrapped quotes. | |||||
| 2015-01-06 | Rudimentary change list (accessible via g; and g,) | Marc André Tanner | 1 | -0/+2 | |
| 2015-01-06 | Change :open to create a new window if no argument is given | Marc André Tanner | 1 | -1/+1 | |
| Use it for the creation of a new window without changing the layout as split and vsplit do. Map it to CTRL+w n. | |||||
| 2015-01-06 | Add default settings for editor startup | Marc André Tanner | 1 | -0/+5 | |
| 2015-01-06 | Support per file type settings | Marc André Tanner | 1 | -0/+5 | |
| This adds yet another layer of indirection. exec_cmdline_command should take a const char pointer and not modify its argument. | |||||
| 2015-01-06 | Fix some compiler warnings | Marc André Tanner | 1 | -2/+3 | |
| 2015-01-04 | Simplify jump to line :nnn | Marc André Tanner | 1 | -1/+0 | |
| As a side effect this also allows to jump to marks via :'m | |||||
| 2015-01-04 | Change window_cursor_getxy API | Marc André Tanner | 1 | -3/+2 | |
| 2015-01-03 | Add the :x(it)? command | Matthias Braun | 1 | -0/+1 | |
| 2015-01-03 | Fix :quit regex | Matthias Braun | 1 | -1/+1 | |
| 2015-01-03 | Fix size_t specifiers in format strings | Matthias Braun | 1 | -1/+1 | |
| 2015-01-03 | Add python syntax support | Matias Linares | 1 | -0/+39 | |
| 2015-01-02 | Make last insertion/replacement repeatable with '.' | Marc André Tanner | 1 | -0/+16 | |
| 2015-01-02 | Rip out insertion repeating infrastructure | Marc André Tanner | 1 | -3/+0 | |
| 2015-01-01 | Add rudimentary support for jump list (CTRL+{O,I}) | Marc André Tanner | 1 | -0/+2 | |
| 2014-12-23 | Distinct between inner and outer word text objects | Marc André Tanner | 1 | -4/+4 | |
| 2014-12-18 | Macro support | Marc André Tanner | 1 | -3/+8 | |
| At some point this should be optimized further at the moment there is some 20 byte overhead for each entered key. | |||||
| 2014-11-10 | Improve syntax highlighting of C style comments ending in **/ | Marc André Tanner | 1 | -1/+1 | |
| Based on a patch from Augusto Born de Oliveira and ideas from http://ostermiller.org/findcomment.html | |||||
| 2014-10-25 | Fix mode switching bugs | Marc André Tanner | 1 | -3/+13 | |
