min.vim
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 |
" Vim syntax file
" Language: min
" Maintainer: Fabio Cevasco
" Last Change: 25 March 2017
" Version: 0.5.0
if exists("b:current_syntax")
finish
endif
setl iskeyword=@,36-39,+,-,/,*,.,:,~,!,48-57,60-65,94-95,192-255
setl iskeyword+=^
syntax keyword minDefaultSymbol ! != $ & ' * + # - % ^ -> . .. / : < <= == => =~ > >= @ ROOT aes all? and any? append ask at atime b bind bool bool? bury1 bury2 bury3 c call call! capitalize case cd chmod choose cleave column-print concat confirm cons cp cpu crypto ctime datetime ddel debug decode define delete dget dictionary? dig1 dig2 dig3 dip dir? dirname div dprint dprint! dset dup dupd encode env? error eval even? exists? exit fappend fatal file? filename filter first float float? foreach fperms fread from-json format-error fs fsize fstats ftype fwrite gets getenv hardlink hidden? id if import in? indent info int int? interpolate interval io join k keep keys length linrec load load-symbol logic loglevel loglevel? lowercase ls ls-r map match md5 mkdir mod module module-symbols module-sigils mtime mv newline newstack nip not notice now num number? odd? os over password pick pop popd pred prepend print print! prompt publish puts puts! putenv q quotation? quote quote-bind quote-define random raise regex remove-symbol repeat replace rest reverse rm rmdir run save-symbol scope scope? seal search sha1 sha224 sha256 sha384 sha512 sigils sip size sleep sort source split spread stack startup stored-symbols str string string? strip succ sum swap swapd swons symbols symlink symlink? sys system take tformat time timeinfo times timestamp titleize to-json try unquote unstack uppercase unzip values version warn when which while with xor zip
syntax match minDefaultSigil ;\<[:@'~!$%&$=<>#^*#+/]; contained
syntax match minSpecialSymbols ;[:@'~!$%&$=<>#^*#+/]; contained
syntax match minQuote ;\<['];
syntax match minQuotedBinding ;#;
syntax match minBinding ;@;
syntax keyword minCommentTodo TODO FIXME XXX TBD contained
syntax match minComment /;.*$/ contains=minCommentTodo
syntax match minNumber ;[-+]\=\d\+\(\.\d*\)\=;
syntax keyword minBoolean true false
syntax region minString start=+"+ skip=+\\\\\|\\$"+ end=+"+
syntax region minSigilSymbol start=;\<[:@'~!$%&$=<>^*#+/]; end=;\>; contains=minDefaultSigil
syntax region minQuotedSymbol start=;\<[']; end=;\>; contains=minQuote
syntax region minBoundSymbol start=;@; end=;\>; contains=minBinding
syntax region minQuotedBoundSymbol start=;#; end=;\>; contains=minQuotedBinding
syntax match minSymbol ;[a-zA-Z._][a-zA-Z0-9/!?+*._-]*;
syntax match minParen ;(\|);
" Highlighting
hi default link minComment Comment
hi default link minCommentTodo Todo
hi default link minString String
hi default link minSigilSymbol String
hi default link minNumber Number
hi default link minBoolean Boolean
hi default link minDefaultSymbol Statement
hi default link minQuote Delimiter
hi default link minBinding Delimiter
hi default link minQuotedBinding Delimiter
hi default link minDefaultSigil Delimiter
hi default link minSymbol Identifier
hi default link minQuotedSymbol Special
hi default link minBoundSymbol Special
hi default link minQuotedBoundSymbol Special
hi default link minParen Special
let b:current_syntax = "min"
|