| Age | Commit message (Collapse) | Author | Files | Lines | |
|---|---|---|---|---|---|
| 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 | 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. | |||||
| 2016-03-21 | build: overhaul build system auto detect stuff using a configure script | Marc André Tanner | 1 | -16/+18 | |
| The new build instructions are: $ ./configure && make && sudo make install The configure script tries to auto detect support for various libraries and compiler options. These choices can be overwritten by explicitly specifing --{en,dis}able-{lua,selinux,acl}. See ./configure --help for all supported options. The configure script generates config.mk which should allow portable (among GNU and BSD make) Makefiles. Manually editing config.mk is still supported. | |||||
| 2016-03-15 | vis: do properly replay ": and "/ registers | Marc André Tanner | 1 | -1/+2 | |
| This makes @: (and @/) work. | |||||
| 2016-03-15 | vis: add support for command register ": | Marc André Tanner | 1 | -0/+1 | |
| 2016-03-13 | Update README to include recent changes to supported registers | Marc André Tanner | 1 | -3/+2 | |
| 2016-03-11 | Update README to reflect changes in multiple cursor support | Marc André Tanner | 1 | -3/+8 | |
| 2016-02-25 | vis: use standard registers for macro recordings | Marc André Tanner | 1 | -2/+3 | |
| Also support upper case register to append to an existing macro. | |||||
| 2016-02-20 | Description for langmap command | xomachine | 1 | -0/+18 | |
| 2016-02-18 | Update README to reflect changes to Lua API | Marc André Tanner | 1 | -5/+14 | |
| 2016-02-18 | vis: use <Tab> to align multiple cursors in normal mode | Marc André Tanner | 1 | -1/+1 | |
| 2016-02-13 | vis: in insert mode <S-Tab> aligns all cursors by inserting spaces | Marc André Tanner | 1 | -0/+4 | |
| 2016-02-12 | Update README to reflect recent development | Marc André Tanner | 1 | -32/+88 | |
| Also fix a few spelling mistakes. | |||||
| 2016-01-19 | Add usage example for file open dialog to README | Silvan Jegen | 1 | -2/+10 | |
| 2015-12-31 | Add explicit build commands to README | Marc André Tanner | 1 | -0/+4 | |
| 2015-12-31 | Add section about Lua API to README | Marc André Tanner | 1 | -0/+39 | |
| 2015-12-29 | #111 command line prompt options defaults | Erlend Fagerheim | 1 | -10/+14 | |
| 2015-12-28 | Update README | Marc André Tanner | 1 | -287/+272 | |
| 2015-12-26 | vis: refactor Lua integration | Marc André Tanner | 1 | -1/+1 | |
| Lua support can now be disabled at compile time using: $ make CONFIG_LUA=0 This commit also adds an initial Lua API and provides a few default hooks. We now also require Lua >= 5.2 due to the uservalue constructs. In principle the same functionality could be implemented using function environments from Lua 5.1. | |||||
| 2015-11-08 | Clarify build dependencies in README | Marc André Tanner | 1 | -2/+2 | |
| 2015-11-08 | Mention make local in README | Marc André Tanner | 1 | -1/+3 | |
| 2015-11-08 | Mention new source files in README | Marc André Tanner | 1 | -2/+9 | |
| 2015-11-08 | vis: implement :set colorcolumn | Marc André Tanner | 1 | -0/+4 | |
| 2015-11-08 | Update README | Marc André Tanner | 1 | -1/+30 | |
| 2015-10-27 | Update source tree overview section in README | Marc André Tanner | 1 | -2/+2 | |
| 2015-10-05 | Add section about build dependencies to README | Marc André Tanner | 1 | -2/+11 | |
| 2015-08-06 | vis: implement al and il text objects | Marc André Tanner | 1 | -4/+9 | |
| 2015-08-02 | Add short demo screencast to README | Marc André Tanner | 1 | -0/+2 | |
| 2015-08-02 | Update README | Marc André Tanner | 1 | -185/+141 | |
