tisp.vim

vim configuration for the tisp langauge
git clone git://edryd.org/tisp.vim
Log | Files | Refs

commit d1cdbf4c4210903b80d73ffafcbe13a96ffd2d21
parent 6bb0260cd80e7c383ef176a07d4ef91ebb8e9326
Author: Ed van Bruggen <edvb@uw.edu>
Date:   Sat,  7 Sep 2019 16:53:12 -0700

Highlight list boolean functions

Diffstat:
syntax/tisp.vim | 5+++--
1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/syntax/tisp.vim b/syntax/tisp.vim @@ -26,9 +26,10 @@ syn keyword tispSyntax not and or nand nor " functions syn keyword tispFunc type version repl ans -syn keyword tispFunc nil? void? string? symbol? -syn keyword tispFunc function? primitive? pair? boolean? true? false? +syn keyword tispFunc nil? empty? void? string? symbol? +syn keyword tispFunc function? primitive? macro? pair? cons? list? syn keyword tispFunc integer? ratio? decimal? rational? number? +syn keyword tispFunc boolean? true? false? " math syn keyword tispFunc + - * / ^ mod ! = < <= = > >=