From 1d66949046b7097266e15ce6c4b27a32d270afe8 Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Tue, 12 Sep 2017 23:00:42 -0700 Subject: [PATCH] Initial commit. --- ftdetect/nomsu.vim | 5 +++++ ftplugin/nomsu.vim | 14 +++++++++++++ indent/nomsu.vim | 39 ++++++++++++++++++++++++++++++++++++ syntax/nomsu.vim | 49 ++++++++++++++++++++++++++++++++++++++++++++++ 4 files changed, 107 insertions(+) create mode 100644 ftdetect/nomsu.vim create mode 100644 ftplugin/nomsu.vim create mode 100644 indent/nomsu.vim create mode 100644 syntax/nomsu.vim diff --git a/ftdetect/nomsu.vim b/ftdetect/nomsu.vim new file mode 100644 index 0000000..2bb2aa2 --- /dev/null +++ b/ftdetect/nomsu.vim @@ -0,0 +1,5 @@ +" Language: Nomsu +" Maintainer: Bruce Hill +" License: WTFPL + +autocmd BufNewFile,BufRead *.nom set filetype=nomsu diff --git a/ftplugin/nomsu.vim b/ftplugin/nomsu.vim new file mode 100644 index 0000000..a5c820d --- /dev/null +++ b/ftplugin/nomsu.vim @@ -0,0 +1,14 @@ +" Language: Nomsu +" Maintainer: Bruce Hill +" License: WTFPL + +if exists("b:did_ftplugin") + finish +endif +let b:did_ftplugin = 1 + +setlocal formatoptions-=t +setlocal iskeyword=46,58,44,40,41,34,91,92 + + +let b:undo_ftplugin = "setlocal formatoptions<" diff --git a/indent/nomsu.vim b/indent/nomsu.vim new file mode 100644 index 0000000..e5288ea --- /dev/null +++ b/indent/nomsu.vim @@ -0,0 +1,39 @@ +" Language: Nomsu +" Maintainer: Bruce Hill +" License: WTFPL + +if exists("b:did_indent") + finish +endif + +let b:did_indent = 1 + +setlocal autoindent +setlocal indentexpr=GetNomsuIndent() +setlocal indentkeys+=. + +" Only define the function once. +if exists("*GetNomsuIndent") + finish +endif + +function! GetNomsuIndent() + let line = getline(v:lnum) + let current_ind = indent(v:lnum) + let previousNum = prevnonblank(v:lnum - 1) + let previous = getline(previousNum) + let ind = indent(previousNum) + + if previous =~ ':$' || previous =~ '\.\.$' || previous =~ '(\.\.)$' || previous =~ '\[\.\.\]$' || previous =~ '"\.\."$' + let ind += &tabstop + endif + + if line =~ '^\s*\.\.$' + let ind -= &tabstop + endif + + if ind == indent(previousNum) + return current_ind + endif + return ind +endfunction diff --git a/syntax/nomsu.vim b/syntax/nomsu.vim new file mode 100644 index 0000000..ce22528 --- /dev/null +++ b/syntax/nomsu.vim @@ -0,0 +1,49 @@ +" Language: Nomsu +" Maintainer: Bruce Hill +" License: WTFPL + +" Bail if our syntax is already loaded. +if exists('b:current_syntax') && b:current_syntax == 'nomsu' + finish +endif + +" Highlight long strings. +syn sync minlines=100 + +" Regular strings + +syn region nomsuString1 start=/"/ skip=/\\\\\|\\"/ end=/"/ +hi def link nomsuString1 String +syn region nomsuString2 start=/"\.\."/ end=/\(\n[ \t]*[^ \t|]\)\@=/ +hi def link nomsuString2 String +syn region nomsuComment start=/(#/ end=/#)/ contains=nomsuComment +hi def link nomsuComment Comment + +syn match nomsuVar /\v\%[a-zA-Z0-9_'+*/^&$@#-]*/ +hi def link nomsuVar Identifier + +syn match nomsuNumber /\v([a-zA-Z])@