diff options
| author | iamcheeseman <[email protected]> | 2026-05-10 18:36:22 -0400 |
|---|---|---|
| committer | iamcheeseman <[email protected]> | 2026-05-10 18:36:22 -0400 |
| commit | 8e5173a2d25c8f79607f4806016276065abda41c (patch) | |
| tree | be4cfd1d2c7589d85b44f55ea8a966cb3bf3d776 /.config/nvim/syntax/microscript.vim | |
| parent | f0bf896d1372c69d8ad7889564a28168954d8123 (diff) | |
update
Diffstat (limited to '.config/nvim/syntax/microscript.vim')
| -rw-r--r-- | .config/nvim/syntax/microscript.vim | 44 |
1 files changed, 0 insertions, 44 deletions
diff --git a/.config/nvim/syntax/microscript.vim b/.config/nvim/syntax/microscript.vim deleted file mode 100644 index 213c934..0000000 --- a/.config/nvim/syntax/microscript.vim +++ /dev/null @@ -1,44 +0,0 @@ -if exists("b:current_syntax") - finish -endif - -syn keyword usStatement break next ret -syn keyword usStructure let global -syn keyword usLiteral true false zilch nada -syn keyword usConditional else elseif -syn keyword usOperator and or -syn keyword usTodo TODO FIXME HACK XXX -syn keyword usRepeat in - -syn region usIfEnd transparent matchgroup=usConditional start="\<if\>" end="\<end\>" contains=TOP -syn region usRepeatEnd transparent matchgroup=usRepeat start="\<loop\>" end="\<end\>" contains=TOP -syn region usDoEnd transparent matchgroup=usStatement start="\<do\>" end="\<end\>" contains=TOP -syn region usFunEnd transparent matchgroup=usStructure start="\<fun\>" end="\<end\>" contains=TOP -syn region usString start=/"/ end=/"/ contains=usSpecial -syn region usString start=/'/ end=/'/ contains=usSpecial - -syn match usFunction /[a-zA-Z_][a-zA-Z0-9_:]*\ze(/ -syn match usLabel /<[a-zA-Z_][a-zA-Z0-9_:]*>$/ -syn match usSpecial contained /\\[\\"'tnr]/ -syn match usComment /\#.*/ contains=usTodo -syn match usNumber /\<\d\+\>/ -syn match usNumber /\<\d\+\.\d*/ -syn match usSymbolOperator /=|\+=|-=|\*=|\/=|%=||\+|-|\*|\/|%|<|>|<=|>=|==|!=|!|\.|\.\./ - -hi def link usStructure Structure -hi def link usFunction Function -hi def link usStatement Statement -hi def link usLabel Label -hi def link usConditional Conditional -hi def link usRepeat Repeat -hi def link usModifier StorageClass -hi def link usString String -hi def link usSpecial Special -hi def link usOperator Operator -hi def link usSymbolOperator usOperator -hi def link usNumber Constant -hi def link usLiteral Constant -hi def link usComment Comment -hi def link usTodo Todo - -let b:current_syntax = 'microscript' |
