| Age | Commit message (Collapse) | Author | Files | Lines | |
|---|---|---|---|---|---|
| 2016-05-14 | vis-lua: add win:map function for window local key mappings | Marc André Tanner | 1 | -0/+1 | |
| Based on a patch by Josh Wainwright. Close #306 | |||||
| 2016-05-04 | vis-lua: add new theme_change event hook | Marc André Tanner | 1 | -0/+1 | |
| 2016-05-04 | note that primary cursor is not blinking | Erlend Fagerheim | 1 | -1/+2 | |
| 2016-05-01 | vis-lua: expose vis:feedkeys API | Marc André Tanner | 1 | -0/+1 | |
| 2016-04-29 | vis: move non-configuration sections out of visrc.lua into vis.lua | Marc André Tanner | 1 | -0/+1 | |
| The intention is that vis.lua will provide parts of the Lua API not implemented in the C core. Please update your existing visrc.lua configuration file accordingly. | |||||
| 2016-04-26 | vis-lua: add file.modified property | Marc André Tanner | 1 | -0/+1 | |
| 2016-04-23 | Mention NixOS package in README | Marc André Tanner | 1 | -0/+1 | |
| 2016-04-21 | vis-lua: allow selection modification by assigning to cursor.selection | Marc André Tanner | 1 | -1/+1 | |
| 2016-04-21 | vis-lua: implement vis:message(msg) | Marc André Tanner | 1 | -1/+2 | |
| 2016-04-21 | vis-lua: also accept a range as argument for file:delete and file:content | Marc André Tanner | 1 | -7/+11 | |
| 2016-04-21 | vis-lua: add vis:command_register to map a Lua function to a :-command | Marc André Tanner | 1 | -0/+1 | |
| The following registers `:foo` as a command which prints a few things to stdout: vis:command_register("foo", function(argv, force, win, cursor, range) for i,arg in ipairs(argv) do print(i..": "..arg) end print("was command forced with ! "..(force and "yes" or "no")) print(win.file.name) print(cursor.pos) print(range ~= nil and ('['..range.start..', '..range.finish..']') or "invalid range") return true; end) | |||||
| 2016-04-19 | vis: add :set horizon option | David B. Lamkins | 1 | -0/+4 | |
| Can be used to specify the number of bytes before the visible area to consider for syntax highlighting. Defaults to 32K for now, whereas before it was 16K. | |||||
| 2016-04-19 | Integrate vis-test git submodule | Marc André Tanner | 1 | -3/+3 | |
| 2016-04-17 | Mention #vis-editor IRC channel in README | Marc André Tanner | 1 | -0/+3 | |
| Close #270 | |||||
| 2016-04-17 | Mention slmenu(1) in README | Marc André Tanner | 1 | -1/+3 | |
| 2016-04-16 | vis-lua: add vis.mode property | Marc André Tanner | 1 | -0/+1 | |
| 2016-04-16 | vis-lua: update API documentaiton in README | Marc André Tanner | 1 | -1/+3 | |
| 2016-04-16 | vis-lua: add cursor.selection property | Marc André Tanner | 1 | -0/+1 | |
| 2016-04-16 | vis-lua: add window.cursors[] array | Marc André Tanner | 1 | -0/+1 | |
| 2016-04-16 | vis-lua: add window.cursors_iterator function | Marc André Tanner | 1 | -0/+1 | |
| 2016-04-16 | vis-lua: add cursor.number property | Marc André Tanner | 1 | -0/+1 | |
| 2016-04-15 | vis-lua: change cursor object implementation | Marc André Tanner | 1 | -2/+2 | |
| 2016-04-15 | vis-lua: add file.size to return file size in bytes | Marc André Tanner | 1 | -0/+1 | |
| 2016-04-15 | vis-lua: add file.newlines to detect type of new lines | Marc André Tanner | 1 | -0/+1 | |
| 2016-04-14 | Merge branch 'package-smgl' of https://github.com/vaygr/vis | Marc André Tanner | 1 | -0/+1 | |
| 2016-04-13 | vis: make = operator an alias for gq, both currently use fmt(1) | Marc André Tanner | 1 | -1/+2 | |
| 2016-04-12 | Add "[(" and "])" motions for jumping to a parenthese pair's start/end | Rob Pilling | 1 | -0/+2 | |
| 2016-04-12 | Add "[{" and "]}" motions to jump to a block's start/end | Rob Pilling | 1 | -0/+2 | |
| 2016-04-12 | README.md: add coverity scan build status badge | Marc André Tanner | 1 | -2/+2 | |
| 2016-04-11 | added link to new SMGL package for vis | Vlad Glagolev | 1 | -0/+1 | |
| 2016-04-11 | README.md: add travis-ci build status badge | Steven Noonan | 1 | -0/+3 | |
| Signed-off-by: Steven Noonan <steven@uplinklabs.net> | |||||
| 2016-04-11 | Update developer overview section in README | Marc André Tanner | 1 | -16/+21 | |
| 2016-04-10 | Merge branch 'master' of https://github.com/erig0/vis | Marc André Tanner | 1 | -0/+1 | |
| 2016-04-09 | README.md: Add pkgsrc to the distribution packages list | Eric Garver | 1 | -0/+1 | |
| 2016-04-09 | [README] unmap requires <mode> | Josh Wainwright | 1 | -1/+1 | |
| 2016-04-08 | Add more detail on configuring to README.md | larryhynes | 1 | -1/+17 | |
| 2016-04-08 | Add section on visrc.lua to README.md | larryhynes | 1 | -0/+8 | |
| 2016-04-08 | Mention a few more distribution packages in README | Marc André Tanner | 1 | -0/+2 | |
| 2016-04-07 | Update README.md | Lawrence Luo | 1 | -1/+1 | |
| I'm quite sure that was meant to be CSV, Comma Separated Value file format | |||||
| 2016-04-07 | Commands and movements on alphabetic order. | Joshua Haase | 1 | -56/+55 | |
| 2016-04-05 | Update README with newer screen cast | Marc André Tanner | 1 | -1/+1 | |
| 2016-04-05 | Update README to include latest multiple cursors related key bindings | Marc André Tanner | 1 | -2/+7 | |
| 2016-04-03 | Update README to reflect sam(1) integration | Marc André Tanner | 1 | -50/+16 | |
| 2016-04-03 | Add section about new command language to README | Marc André Tanner | 1 | -8/+94 | |
| 2016-04-03 | vis: in visual mode let \ trim selections | Marc André Tanner | 1 | -0/+1 | |
| 2016-03-30 | vis: implement selection rotation | Marc André Tanner | 1 | -0/+2 | |
| In visual mode + and - will rotate the selection count times to the right or left respectively. If there exists a line containing multiple selections then the rotation happens within each line. Otherwise if each line contains at most one selection the rotation is performed among all existing selections. | |||||
| 2016-03-29 | README: add a paragraph about distribution packages | Christian Hesse | 1 | -0/+4 | |
| We have binary packages for Arch Linux, at least! | |||||
| 2016-03-28 | Update README section about multiple cursor key bindings | Marc André Tanner | 1 | -17/+21 | |
| 2016-03-23 | vis: use vis-clipboard instead of vis-{copy,paste} scripts | Marc André Tanner | 1 | -1/+1 | |
| 2016-03-21 | vis: also lookup Lua support files relative to the binary location | Marc André Tanner | 1 | -2/+1 | |
| This simplifies deployment of vis on remote systems without root access. The idea is to extract a statically linked binary together with the lexer syntax files into some directory, adjust $PATH to include it and have everything just work. For now this uses /proc/self/exe and thus only works on Linux based systems. | |||||
