misc/vim/syntax/factor.vim: update comments

db4
Keita Haga 2011-04-05 03:44:45 +09:00
parent 811cab4f60
commit 9f6f498cb6
2 changed files with 4 additions and 4 deletions

View File

@ -23,10 +23,10 @@ elseif exists("b:current_syntax")
finish finish
endif endif
" factor is case sensitive. " Factor is case sensitive.
syn case match syn case match
" make all of these characters part of a word (useful for skipping over words with w, e, and b) " Make all of these characters part of a word (useful for skipping over words with w, e, and b)
if version >= 600 if version >= 600
setlocal iskeyword=!,@,33-35,%,$,38-64,A-Z,91-96,a-z,123-126,128-255 setlocal iskeyword=!,@,33-35,%,$,38-64,A-Z,91-96,a-z,123-126,128-255
else else

View File

@ -12,10 +12,10 @@ elseif exists("b:current_syntax")
finish finish
endif endif
" factor is case sensitive. " Factor is case sensitive.
syn case match syn case match
" make all of these characters part of a word (useful for skipping over words with w, e, and b) " Make all of these characters part of a word (useful for skipping over words with w, e, and b)
if version >= 600 if version >= 600
setlocal iskeyword=!,@,33-35,%,$,38-64,A-Z,91-96,a-z,123-126,128-255 setlocal iskeyword=!,@,33-35,%,$,38-64,A-Z,91-96,a-z,123-126,128-255
else else