diff options
Diffstat (limited to 'support/vim')
| -rw-r--r-- | support/vim/ftdetect/gatstxt.vim | 1 | ||||
| -rw-r--r-- | support/vim/ftplugin/gatstxt.vim | 25 | ||||
| -rw-r--r-- | support/vim/syntax/gatstxt.vim | 38 |
3 files changed, 64 insertions, 0 deletions
diff --git a/support/vim/ftdetect/gatstxt.vim b/support/vim/ftdetect/gatstxt.vim new file mode 100644 index 0000000..f6f3c1f --- /dev/null +++ b/support/vim/ftdetect/gatstxt.vim | |||
| @@ -0,0 +1 @@ | |||
| au BufRead,BufNewFile *.gtxt set filetype=gatstxt | |||
diff --git a/support/vim/ftplugin/gatstxt.vim b/support/vim/ftplugin/gatstxt.vim new file mode 100644 index 0000000..0a2b911 --- /dev/null +++ b/support/vim/ftplugin/gatstxt.vim | |||
| @@ -0,0 +1,25 @@ | |||
| 1 | " Vim filetype plugin file | ||
| 2 | " Language: GatsTxt | ||
| 3 | |||
| 4 | " Only do this when not done yet for this buffer | ||
| 5 | if exists("b:did_ftplugin") | ||
| 6 | finish | ||
| 7 | endif | ||
| 8 | |||
| 9 | " Don't load another plugin for this buffer | ||
| 10 | let b:did_ftplugin = 1 | ||
| 11 | |||
| 12 | " Set format options -- allow comment formatting with gq, but disable | ||
| 13 | " other processing | ||
| 14 | " setlocal fo-=tcrowan2 fo+=q | ||
| 15 | setlocal fo-=t fo+=croql | ||
| 16 | |||
| 17 | " Set 'comments' to be the same as C/C++ | ||
| 18 | setlocal comments=sO:*\ -,mO:*\ \ ,exO:*/,s1:/*,mb:*,ex:*/,://,:# | ||
| 19 | |||
| 20 | " Win32 can filter files in the browse dialog | ||
| 21 | if has("gui_win32") && !exists("b:browsefilter") | ||
| 22 | let b:browsefilter = "Nango files (*.gtxt)\t*.gtxt\n" . | ||
| 23 | \ "All Files (*.*)\t*.*\n" | ||
| 24 | endif | ||
| 25 | |||
diff --git a/support/vim/syntax/gatstxt.vim b/support/vim/syntax/gatstxt.vim new file mode 100644 index 0000000..6722e8a --- /dev/null +++ b/support/vim/syntax/gatstxt.vim | |||
| @@ -0,0 +1,38 @@ | |||
| 1 | " Vim syntax file | ||
| 2 | " Language: GatsTxt | ||
| 3 | " Maintainer: None :) | ||
| 4 | " Last Change: 2013 Feb 10 | ||
| 5 | |||
| 6 | " For version 5.x: Clear all syntax items | ||
| 7 | " For version 6.x: Quit when a syntax file was already loaded | ||
| 8 | if version < 600 | ||
| 9 | syntax clear | ||
| 10 | elseif exists("b:current_syntax") | ||
| 11 | finish | ||
| 12 | endif | ||
| 13 | |||
| 14 | |||
| 15 | sy region Group start=+{+ end=+}+ fold | ||
| 16 | sy region List start=+[[]+ end=+]+ fold | ||
| 17 | |||
| 18 | sy match Int +[1-9][0-9]*[if]\?+ | ||
| 19 | sy match Flt +[0-9]*\.[0-9]*[if]\?+ | ||
| 20 | |||
| 21 | |||
| 22 | sy region Str start=+"+ skip=+\\"+ end=+"+ | ||
| 23 | sy keyword Bool true | ||
| 24 | sy keyword Bool false | ||
| 25 | sy keyword Null null | ||
| 26 | |||
| 27 | sy match Ops '[{[:}\],]' | ||
| 28 | |||
| 29 | " sy region Comment start=+//+ end=+$+ | ||
| 30 | " sy region Comment start=+/\*+ end=+\*/+ | ||
| 31 | |||
| 32 | |||
| 33 | hi def link Ops Operator | ||
| 34 | hi def link Str String | ||
| 35 | hi def link Bool Keyword | ||
| 36 | hi def link Null Keyword | ||
| 37 | hi def link Int Number | ||
| 38 | hi def link Flt Float | ||
