File tree Expand file tree Collapse file tree 2 files changed +3
-12
lines changed
Expand file tree Collapse file tree 2 files changed +3
-12
lines changed Original file line number Diff line number Diff line change @@ -102,18 +102,6 @@ proposed change and how it is valuable.
102102Report a bug on [ GitHub Issues] ( https://github.com/pangloss/vim-javascript/issues ) .
103103
104104
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-
117105## License
118106
119107Distributed under the same terms as Vim itself. See ` :help license ` .
Original file line number Diff line number Diff line change 11setlocal suffixesadd += .js
2+ if (v: version < 704 || (v: version == 704 && ! has (' patch002' ))) && exists (' ®expengine' )
3+ set re = 1
4+ end
You can’t perform that action at this time.
0 commit comments