We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8c56957 commit 5b143bdCopy full SHA for 5b143bd
2 files changed
README.md
@@ -102,18 +102,6 @@ proposed change and how it is valuable.
102
Report a bug on [GitHub Issues](https://github.com/pangloss/vim-javascript/issues).
103
104
105
-## A Quick Note on Regexes
106
-
107
-Vim 7.4 with patches LESS than 1-7 exhibits a bug that broke how we handle
108
-javascript regexes. Please update to a newer version or run the following
109
-commands to fix:
110
111
-```
112
-:set regexpengine=1
113
-:syntax enable
114
115
116
117
## License
118
119
Distributed under the same terms as Vim itself. See `:help license`.
ftplugin/javascript.vim
@@ -1 +1,4 @@
1
setlocal suffixesadd+=.js
2
+if (v:version < 704 || (v:version == 704 && !has('patch002'))) && exists('®expengine')
3
+ set re=1
4
+end
0 commit comments