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.
102
102
Report a bug on [ GitHub Issues] ( https://github.com/pangloss/vim-javascript/issues ) .
103
103
104
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
105
## License
118
106
119
107
Distributed under the same terms as Vim itself. See ` :help license ` .
Original file line number Diff line number Diff line change 1
1
setlocal 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