| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2016-12-07 | Move all lua related files to lua/ subfolder | Marc André Tanner | |
| Also remove the lexers sub directory from the Lua search path. As a result we attempt to open fewer files during startup: $ strace -e open -o log ./vis +q config.h && wc -l log In order to avoid having to modifiy all lexers which `require('lexer')` we instead place a symlink in the top level directory. $ ./configure --disable-lua $ rm -rf lua Should result in a source tree with most lua specifc functionality removed. | |||
| 2016-11-30 | lexer: add standard ml | Murray Calavera | |
| 2016-11-18 | Update scheme.lua | Luiz de Milon | |
| The scheme syntax highlighting wasn't highlighting base functions, this fixes it. | |||
| 2016-11-11 | lexers/fstab: add systemd-specific mount options | Christian Hesse | |
| 2016-10-28 | theme: use better defaults for color column and cursor line styles in 16 ↵ | Marc André Tanner | |
| color mode Setting the background color to the same color as the text is not helpful, instead use red for the color column and underline to highlight the cursor line. | |||
| 2016-10-07 | lexers: sync with scintillua changeset 571 rev 23435f1d82da | Marc André Tanner | |
| This fixes ":set syntax text" and adds a missing file association for the taskpaper lexer. The protobuf and crystal lexers were slightly reformatted, but should contain no functional changes. | |||
| 2016-10-06 | lexers/pkgbuild: support arch specific variables | Christian Hesse | |
| 2016-10-05 | lexers/pkgbuild: add a comment about pkgver, srcdir and startdir | Christian Hesse | |
| 2016-10-05 | lexers/pkgbuild: match functions with parentheses | Christian Hesse | |
| This solves a name conflict between 'pkgver' variable (which what highlighted in wrong color) and function. | |||
| 2016-10-05 | lexers: reduce changes to scintilla core lexing code | Marc André Tanner | |
| Based upon scintillua rev 568 id 55b15760cd31. | |||
| 2016-10-05 | lexers: sync language lexers with scintillua rev 568 id 55b15760cd31 | Marc André Tanner | |
| Adds a taskpaper lexer. | |||
| 2016-07-25 | Fix filetype table link in lexers/README.md | Chloe | |
| `vis.filetypes` can be found on [line 72 of `vis.lua`](https://github.com/martanne/vis/blob/master/vis.lua#L72), but is not present at all in lexer.lua. Fix `lexers/README.md` to avoid further confusion. | |||
| 2016-05-28 | lexer: add lexer for Google protocol buffer IDL | David B. Lamkins | |
| Close #326 | |||
| 2016-05-22 | lexer: return nil if lexer loading fails | Marc André Tanner | |
| 2016-05-22 | vis: move syntax highlighting to pure Lua code | Marc André Tanner | |
| 2016-05-19 | lexer: add crystal | Michel Martens | |
| 2016-05-11 | Merge branch 'fstab' of https://github.com/eworm-de/vis | Marc André Tanner | |
| 2016-05-11 | lexer: add fstab | Christian Hesse | |
| 2016-05-11 | lexer: add delimiter-separated-values | Christian Hesse | |
| 2016-05-07 | theme: add light-16 theme | David B. Lamkins | |
| This is derived from the latest dark-16 theme by swapping white and black. Close #309 | |||
| 2016-05-07 | lexer: add networkd file LPeg lexer | Christian Hesse | |
| 2016-05-07 | lexer: remove commented command | Christian Hesse | |
| 2016-05-07 | lexer: add systemd service types | Christian Hesse | |
| 2016-05-07 | lexer: add systemd unit file LPeg lexer | Christian Hesse | |
| 2016-05-06 | theme: make dark-16 use more bold font for better color contrast | Christian Hesse | |
| 2016-05-04 | vis-lua: reload all lexers after theme change | Marc André Tanner | |
| Close #221 | |||
| 2016-04-17 | vis: indicate primary cursor by using a different color instead of blinking | Marc André Tanner | |
| Blinking caused more problems (#251, #202) than it solved. Blank cells were especially problematic. | |||
| 2016-04-07 | lexer: update to scintillua-3.6.4-2 | Marc André Tanner | |
| 2016-04-07 | lexer: remove hard coded color specification from lexers | Marc André Tanner | |
| The variable syntax used by scintillua %(color.red) intended to make colors configurable is currently not supported. Close #229 | |||
| 2016-03-21 | vis: also lookup Lua support files relative to the binary location | Marc André Tanner | |
| 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-11 | ui: also blink primary cursor if it is on a blank cell | Marc André Tanner | |
| 2016-03-10 | ui: make primary cursor blink | Marc André Tanner | |
| 2016-02-19 | update lexer for Arch Linux PKGBUILD | Christian Hesse | |
| 2016-01-28 | lexer: snyc with upstream scintillua 3.6.3-1 | Marc André Tanner | |
| 2016-01-17 | theme: change solarized theme to use the 256 degenerated colors | Marc André Tanner | |
| 2016-01-02 | lexer: sync with upstream scintillua rev bdb74a2f31df | Marc André Tanner | |
| 2015-12-29 | lexer: add some meta data to newly added lexers | Marc André Tanner | |
| 2015-12-29 | vis: fix default lua package.path and support $XDG_CONFIG_HOME | Marc André Tanner | |
| 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-26 | vis: move file type detection to visrc.lua | Marc André Tanner | |
| 2015-12-03 | lexer: add lexer for Faust | David B. Lamkins | |
| Faust is a DSP (digital signal processing) programming language. See http://faust.grame.fr/ Closes #125 | |||
| 2015-11-13 | lexer: improve pure lexer | David B. Lamkins | |
| Closes #109 | |||
| 2015-11-11 | lexer: add lexer for pure | David B. Lamkins | |
| Ref: http://purelang.bitbucket.org/ Closes #106 | |||
| 2015-11-10 | lexer: fix some more color specifications | Marc André Tanner | |
| 2015-11-10 | lexers: fix color specification in diff lexer | David B. Lamkins | |
| Closes #102 | |||
| 2015-11-08 | theme: updated low color theme | Marc André Tanner | |
| 2015-11-08 | theme: add default low color theme | Marc André Tanner | |
| 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 | |
| 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 | |
| For now the vis table has only one member "lexers". | |||
| 2015-11-08 | lexer: add ledger lexer | Charles Lehner | |
| 2015-11-08 | theme: increase contrast by setting background color to black | Marc André Tanner | |
