aboutsummaryrefslogtreecommitdiff
path: root/vis-cmds.c
AgeCommit message (Collapse)AuthorFilesLines
2015-12-26vis: refactor Lua integrationMarc André Tanner1-0/+2
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-28vis: add namespace prefix for MARK_SELECTION_{START,END}Marc André Tanner1-4/+4
2015-11-28view: remove ViewEvent infrastructureMarc André Tanner1-1/+1
The only used event handler was used to update the '< and '> marks which is now taken care of by the leave handler of the visual modes.
2015-11-27vis: close correct file descriptor upon failure in filter commandMarc André Tanner1-2/+2
2015-11-23vis: use file open dialog for all directoriesMarc André Tanner1-2/+6
2015-11-08Remove trailing white space from source filesMarc André Tanner1-5/+5
2015-11-08vis: implement :set colorcolumnMarc André Tanner1-0/+5
2015-11-08vis: implement :set themeMarc André Tanner1-0/+9
2015-11-08vis: implement :set cursorlineMarc André Tanner1-0/+11
2015-11-08vis: experimental support for lua/lpeg based syntax highlightingMarc André Tanner1-1/+1
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-08vis: remove regex based syntax highlightingMarc André Tanner1-11/+6
2015-11-07vis: move :-commands into their own fileMarc André Tanner1-0/+1064