vim-polyglot/ftplugin/javascript.vim
Adam Stankiewicz 44b3d860cb
Update
2016-05-31 01:53:12 +02:00

9 lines
225 B
VimL

if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'javascript') == -1
setlocal suffixesadd+=.js
if (v:version < 704 || (v:version == 704 && !has('patch002'))) && exists('&regexpengine')
set re=1
end
endif