summaryrefslogtreecommitdiffstats
path: root/ftplugin/javascript.vim
blob: 2b085bc19477a2c61f7c766116d40744047f9227 (plain) (blame)
1
2
3
4
5
6
7
8
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