aboutsummaryrefslogtreecommitdiff
path: root/lexers
AgeCommit message (Collapse)AuthorFilesLines
2015-12-29lexer: add some meta data to newly added lexersMarc André Tanner4-3/+6
2015-12-29vis: fix default lua package.path and support $XDG_CONFIG_HOMEMarc André Tanner1-1/+1
The ordered list of paths for startup and lexer files is: - $VIS_PATH/{,lexers} - $XDG_CONFIG_HOME/vis/{,lexers} (defaulting to $HOME/.config/vis/{,lexers}) - /usr/local/share/vis/{,lexers} - /usr/share/vis/{,lexers} - package.path (standard lua search path)
2015-12-26vis: move file type detection to visrc.luaMarc André Tanner1-119/+0
2015-12-03lexer: add lexer for FaustDavid B. Lamkins2-0/+58
Faust is a DSP (digital signal processing) programming language. See http://faust.grame.fr/ Closes #125
2015-11-13lexer: improve pure lexerDavid B. Lamkins1-11/+18
Closes #109
2015-11-11lexer: add lexer for pureDavid B. Lamkins2-0/+55
Ref: http://purelang.bitbucket.org/ Closes #106
2015-11-10lexer: fix some more color specificationsMarc André Tanner2-3/+3
2015-11-10lexers: fix color specification in diff lexerDavid B. Lamkins1-3/+3
Closes #102
2015-11-08theme: updated low color themeMarc André Tanner1-9/+7
2015-11-08theme: add default low color themeMarc André Tanner2-0/+33
The theme was contributed by David B. Lamkins
2015-11-08ui: load syntax theme based on the number of supported colorsMarc André Tanner1-0/+0
The theme to use can be overriden via the $VIS_THEME environment variable. $ VIS_THEME=solarized vis
2015-11-08vis: introduce vis namespace for lua objectsMarc André Tanner1-0/+2
For now the vis table has only one member "lexers".
2015-11-08lexer: add ledger lexerCharles Lehner2-0/+58
2015-11-08theme: increase contrast by setting background color to blackMarc André Tanner1-1/+1
2015-11-08lexer: new lexer for man/roff formatDavid B. Lamkins2-0/+36
2015-11-08lexer: new APL lexerDavid B. Lamkins2-0/+69
2015-11-08vis: try to support all lua versions >= 5.1Marc André Tanner1-1/+1
Make lpeg module table explicitly global, which should work with the different module loading semantics.
2015-11-08vis: implement :set colorcolumnMarc André Tanner1-0/+1
2015-11-08Add lexer specific README fileMarc André Tanner1-0/+48
2015-11-08vis: implement :set cursorlineMarc André Tanner1-0/+1
2015-11-08vis: experimental support for lua/lpeg based syntax highlightingMarc André Tanner4-5/+184
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-08Import LPeg based lexers from Scintillua 3.6.1-1Marc André Tanner108-0/+11252
These are Copyright (c) 2007-2015 Mitchell and released under the MIT license.