summaryrefslogtreecommitdiff
path: root/vim/vim-potion/syntax/potionbytecode.vim
diff options
context:
space:
mode:
Diffstat (limited to 'vim/vim-potion/syntax/potionbytecode.vim')
-rw-r--r--vim/vim-potion/syntax/potionbytecode.vim18
1 files changed, 0 insertions, 18 deletions
diff --git a/vim/vim-potion/syntax/potionbytecode.vim b/vim/vim-potion/syntax/potionbytecode.vim
deleted file mode 100644
index 24e2e44..0000000
--- a/vim/vim-potion/syntax/potionbytecode.vim
+++ /dev/null
@@ -1,18 +0,0 @@
-" minimalistic syntax highlighting for testing purposes
-
-if exists("b:current_syntax")
- finish
-endif
-
-syntax keyword potionKeyword code assign
-
-
-syntax match potionNumber "\v\d+"
-syntax region potionString start=/\v"/ skip=/\v\\./ end=/\v"/
-
-
-highlight link potionString String
-highlight link potionKeyword Keyword
-highlight link potionNumber Number
-
-let b:current_syntax = "potionbytecode"