jwalton512 / vim-blade

Vim syntax highlighting for Blade templates.
225 stars 37 forks source link

Add missing characters to 'iskeyword' #53

Closed adriaanzon closed 8 years ago

adriaanzon commented 8 years ago

My previous commit (fc9fceb) broke the highlighting of keywords with numbers in it (e.g. h1-h6). I changed it to the default value of iskeyword plus @-@

jwalton512 commented 8 years ago

Thank you!

jwalton512 commented 8 years ago

@adriaanzon 531a59e fixed an issue I was having with neovim, which doesn't seem to support the syn iskeyword (added in previous pull request). do we know if the has('patch...') is a good long-term solution?

adriaanzon commented 8 years ago

I think so. The patch got merged into neovim https://github.com/neovim/neovim/commit/1b6681e07340a281f2f0dfe5c5d7541af6c1e257 so it will probably also work in the next neovim release.

Edit: tried it with the git version of neovim and it works

jwalton512 commented 8 years ago

awesome, thanks. the conditional you added fixed it for me for now. when the next neovim release happens, i should still be good to go.

thanks again.