diff options
| author | Miguel <m.i@gmx.at> | 2021-11-03 19:59:44 +0100 |
|---|---|---|
| committer | Miguel <m.i@gmx.at> | 2021-11-03 19:59:44 +0100 |
| commit | f70d5dc9b1f546bcfae67f067fe2e3b67f94ca45 (patch) | |
| tree | 3bffaa05b78db0e393bc44eb273f771e08320154 /vim/vim-potion/syntax/potion.vim | |
| parent | e3fb79099e233185825b248a0b275173bd182239 (diff) | |
improving dotfiles
Diffstat (limited to 'vim/vim-potion/syntax/potion.vim')
| -rw-r--r-- | vim/vim-potion/syntax/potion.vim | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/vim/vim-potion/syntax/potion.vim b/vim/vim-potion/syntax/potion.vim deleted file mode 100644 index 2ca9dbc..0000000 --- a/vim/vim-potion/syntax/potion.vim +++ /dev/null @@ -1,37 +0,0 @@ -if exists("b:current_syntax") - finish -endif - -syntax keyword potionKeyword loop times to while -syntax keyword potionKeyword if elsif else -syntax keyword potionKeyword class return -syntax keyword potionFunction print join string - -syntax match potionOperator "\v\." -syntax match potionOperator "\v:" -syntax match potionOperator "\v\=" -syntax match potionOperator "\v\*" -syntax match potionOperator "\v/" -syntax match potionOperator "\v\+" -syntax match potionOperator "\v-" -syntax match potionOperator "\v\?" -syntax match potionOperator "\v\*\=" -syntax match potionOperator "\v/\=" -syntax match potionOperator "\v\+\=" -syntax match potionOperator "\v-\=" - -syntax match potionNumber "\v\d+" -syntax match potionNumber "\v0x\x+" - -syntax region potionString start=/\v"/ skip=/\v\\./ end=/\v"/ - -syntax match potionComment "\v#.*$" - -highlight link potionString String -highlight link potionOperator Operator -highlight link potionKeyword Keyword -highlight link potionFunction Function -highlight link potionComment Comment -highlight link potionNumber Number - -let b:current_syntax = "potion" |
