| Age | Commit message (Collapse) | Author | Files | Lines | |
|---|---|---|---|---|---|
| 2015-11-08 | Delete now obsolete syntax.h | Marc André Tanner | 5 | -22/+14 | |
| 2015-11-08 | vis: map <F1> to :help | Marc André Tanner | 1 | -0/+1 | |
| 2015-11-08 | vis: reindent config.def.h (no functional changes) | Marc André Tanner | 2 | -283/+285 | |
| 2015-11-08 | Tweak manual page | Marc André Tanner | 1 | -2/+24 | |
| 2015-11-08 | view: do not highlight matching symbols if selection is active | Marc André Tanner | 1 | -1/+1 | |
| 2015-11-08 | ui: try to make sure that selected text is still visible | Marc André Tanner | 1 | -1/+1 | |
| 2015-11-08 | theme: updated low color theme | Marc André Tanner | 1 | -9/+7 | |
| 2015-11-08 | theme: add default low color theme | Marc André Tanner | 2 | -0/+33 | |
| The theme was contributed by David B. Lamkins | |||||
| 2015-11-08 | ui: load syntax theme based on the number of supported colors | Marc André Tanner | 3 | -1/+3 | |
| The theme to use can be overriden via the $VIS_THEME environment variable. $ VIS_THEME=solarized vis | |||||
| 2015-11-08 | vis: introduce vis namespace for lua objects | Marc André Tanner | 3 | -11/+15 | |
| For now the vis table has only one member "lexers". | |||||
| 2015-11-08 | build: add VIS_PATH=. to suggested execution after make local | Marc André Tanner | 1 | -1/+1 | |
| 2015-11-08 | build: explicitly link againgst dl | Marc André Tanner | 1 | -1/+1 | |
| For musl this is a nop, it contains the relevant code in libc and provides and empty libdl archive for compatibility. However certain glibc based system need it. | |||||
| 2015-11-08 | lexer: add ledger lexer | Charles Lehner | 2 | -0/+58 | |
| 2015-11-08 | theme: increase contrast by setting background color to black | Marc André Tanner | 1 | -1/+1 | |
| 2015-11-08 | lexer: new lexer for man/roff format | David B. Lamkins | 2 | -0/+36 | |
| 2015-11-08 | lexer: new APL lexer | David B. Lamkins | 2 | -0/+69 | |
| 2015-11-08 | vis: try to support all lua versions >= 5.1 | Marc André Tanner | 4 | -7/+7 | |
| Make lpeg module table explicitly global, which should work with the different module loading semantics. | |||||
| 2015-11-08 | vis: implement :set colorcolumn | Marc André Tanner | 7 | -0/+36 | |
| 2015-11-08 | ui: make default selection visible | Marc André Tanner | 1 | -1/+4 | |
| 2015-11-08 | Add lexer specific README file | Marc André Tanner | 1 | -0/+48 | |
| 2015-11-08 | travis: try to fix build by using local built dependencies | Marc André Tanner | 1 | -2/+2 | |
| 2015-11-08 | ui: redo syntax coloring after resize | Marc André Tanner | 1 | -0/+1 | |
| 2015-11-08 | Update README | Marc André Tanner | 1 | -1/+30 | |
| 2015-11-08 | vis: factor out syntax highlighting code | Marc André Tanner | 3 | -47/+62 | |
| The view_draw function renders the text into the cells array and resyncs the cursor position. The syntax highlighting is applied in view_update, which also instructs the ui to update. | |||||
| 2015-11-08 | vis: implement :set theme | Marc André Tanner | 3 | -3/+36 | |
| 2015-11-08 | vis: implement :set cursorline | Marc André Tanner | 5 | -0/+30 | |
| 2015-11-08 | vis: experimental support for lua/lpeg based syntax highlighting | Marc André Tanner | 11 | -48/+499 | |
| 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-08 | Overhaul build system | Marc André Tanner | 2 | -6/+122 | |
| Add separate per library {C,LD}FLAGS and use default values from pkg-config to allow for finer control. Disable pkg-config by setting PKG_CONFIG_PATH= PKG_CONFIG_LIBDIR= Override flags completely by specifying them as arguments to make: $ make CFLAGS_CURSES="your custom flags for curses" Also introduce a new, experimental Makefile target standalone. It tries to build a self contained statically linked vis binary. All dependencies (musl, ncurses, termkey, lua, lpeg) are build from source. Lua is patched to include lpeg as a statically built module. | |||||
| 2015-11-08 | Import LPeg based lexers from Scintillua 3.6.1-1 | Marc André Tanner | 108 | -0/+11252 | |
| These are Copyright (c) 2007-2015 Mitchell and released under the MIT license. | |||||
| 2015-11-08 | vis: remove regex based syntax highlighting | Marc André Tanner | 10 | -792/+17 | |
| 2015-11-08 | vis: more comments and cleanups | Marc André Tanner | 4 | -96/+84 | |
| 2015-11-07 | text-motion: do not treat ' as string delimiter in match bracket | Marc André Tanner | 1 | -2/+2 | |
| Currently symbols inside a string are ignored. This means that if the opening (closing) symbol is inside (outside) the string while the closing (opening) one is outside (inside), it will not be matched. It is not yet clear whether this "optimization" is useful. Closes #97 | |||||
| 2015-11-07 | vis: shadow default register while in prompt mode | Marc André Tanner | 2 | -2/+12 | |
| Editing operation in prompt mode should not affect the default register. | |||||
| 2015-11-07 | vis: prefix enum VisMotion values with VIS_ | Marc André Tanner | 6 | -264/+225 | |
| 2015-11-07 | vis: tweak enum VisTextObject names | Marc André Tanner | 3 | -78/+78 | |
| 2015-11-07 | vis: prefix enum VisOperator values with VIS_ | Marc André Tanner | 6 | -101/+88 | |
| 2015-11-07 | vis: API documentation and cleanup | Marc André Tanner | 7 | -99/+151 | |
| 2015-11-07 | vis: introduce vis_cancel API | Marc André Tanner | 4 | -8/+13 | |
| 2015-11-07 | vis: move modes into separate file | Marc André Tanner | 3 | -282/+287 | |
| 2015-11-07 | vis: move operators to separate file | Marc André Tanner | 4 | -238/+247 | |
| 2015-11-07 | vis: move motions to separate file | Marc André Tanner | 4 | -262/+272 | |
| 2015-11-07 | vis: move :-commands into their own file | Marc André Tanner | 4 | -1206/+1230 | |
| 2015-11-06 | vis: fix cursor position after charwise paste | Marc André Tanner | 1 | -0/+7 | |
| p and P should leave the cursor on the last inserted character to ease repetition. Closes #92 | |||||
| 2015-11-06 | vis: do something reasonable upon visual repeat | Marc André Tanner | 1 | -0/+4 | |
| We do currently deliberately not support visual repeat. However when there exist multiple cursors, repeating an operator, which acted on a previous visual selection, should not collapse the cursors. | |||||
| 2015-11-06 | vis: fix operators to correctly handle multiple selections | Marc André Tanner | 1 | -4/+8 | |
| Operators must not switch modes, they might be called multiple times (once for every cursor/selection). Closes #91. The concrete problem was that op_change for the first cursor switched to insert mode, which cleared all the remaining selections. Hence the other cursors had nothing to operate on. Reverts parts of d395687b. | |||||
| 2015-11-04 | vis: fix definition of space motion | Marc André Tanner | 1 | -1/+1 | |
| We do not instruct libtermkey to specially report the space key. Hence it is not reported as <Space> but simply as a " " (0x20). Closes #89 | |||||
| 2015-11-03 | vis: make open line commands (o and O) repeatable | Marc André Tanner | 1 | -7/+6 | |
| 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-03 | vis: make single character replace (r command) repeatable | Marc André Tanner | 1 | -7/+9 | |
| 2015-11-03 | vis: add vis_keys_inject to place keys into the input queue | Marc André Tanner | 2 | -6/+25 | |
| This function can only be used from within key handlers. The position argument has to point to a valid key from within the same input buffer after which the new input will be inserted. | |||||
| 2015-11-03 | buffer: add buffer_insert to insert data at an arbitrary position | Marc André Tanner | 2 | -10/+23 | |
| Use it to implement buffer_{pre,ap}pend. | |||||
