We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 653858c + 8cf97bd commit 3072958Copy full SHA for 3072958
ftplugin/javascript.vim
@@ -1,4 +1,10 @@
1
+" Vim filetype plugin file
2
+" Language: JavaScript
3
+" Maintainer: vim-javascript community
4
+" URL: https://github.com/pangloss/vim-javascript
5
+
6
setlocal suffixesadd+=.js
-if (v:version < 704 || (v:version == 704 && !has('patch002'))) && exists('®expengine')
- set re=1
-end
7
8
+if v:version == 703 && exists('®expengine') || v:version == 704 && !has('patch2')
9
+ set regexpengine=1
10
+endif
0 commit comments