diff options
Diffstat (limited to 'syntax/st.vim')
-rw-r--r-- | syntax/st.vim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/syntax/st.vim b/syntax/st.vim index 5ad026bf..7f214c88 100644 --- a/syntax/st.vim +++ b/syntax/st.vim @@ -48,7 +48,7 @@ syn match stCharacter "$." syn case ignore -" the symols prefixed by a '#' +" the symbols prefixed by a '#' syn match stSymbol "\(#\<[a-z_][a-z0-9_]*\>\)" syn match stSymbol "\(#'[^']*'\)" @@ -62,7 +62,7 @@ syn match stFloat "\<\d\+e[-+]\=\d\+[fl]\=\>" syn case match -" a try to higlight paren mismatches +" a try to highlight paren mismatches syn region stParen transparent start='(' end=')' contains=ALLBUT,stParenError syn match stParenError ")" syn region stBlock transparent start='\[' end='\]' contains=ALLBUT,stBlockError |