Compare commits

..

2 Commits

Author SHA1 Message Date
vcargats
4081466cc7 Merge a4379c6305 into 692e359ad9 2024-10-23 16:51:13 -03:00
Vadim Cargatser
a4379c6305 Support old version without syn iskeyword 2022-10-13 21:20:01 +03:00
2 changed files with 10 additions and 2 deletions

View File

@@ -1,4 +1,8 @@
![vim-polyglot](https://i.imgur.com/9RxQK6k.png)
This is my top-starred repository on Github, so I've decided to put this ad here:
If you work for big corp and seek consulting, please visit following repository: https://github.com/sheerun/consultation
![vim-polyglot](https://i.imgur.com/9RxQK6k.png
A collection of language packs for Vim.

View File

@@ -28,7 +28,11 @@ set cpo&vim
syn case ignore
" Add dash to allowed keyword characters.
syn iskeyword @,48-57,_,192-255,-
if has('patch-7.4.1142')
syn iskeyword @,48-57,_,192-255,-
else
setlocal iskeyword=@,48-57,_,192-255,-
endif
" HTML4 tags
syn keyword cssTagName abbr address area a b base