Skip to content

Commit ae0ab52

Browse files
committed
Merge pull request pangloss#131 from pangloss/hotfix/regex-note
README note on regexes
2 parents 75b9896 + 764094a commit ae0ab52

1 file changed

Lines changed: 25 additions & 7 deletions

File tree

README.md

Lines changed: 25 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,24 @@
22

33
JavaScript bundle for vim, this bundle provides syntax and indent plugins.
44

5+
## A Quick Note on Regexes
6+
7+
Vim 7.4 was released recently, and unfortunately broke how this plugin
8+
handles regexes. There was no real easy way for us to fix this unless we
9+
completely rewrote how regexes work.
10+
11+
Good News: There was a recent update to Vim 7.4 that fixes this issue.
12+
13+
Make sure you are at least using Vim 7.4, with patches 1-7.
14+
15+
If you are stuck on an older version of Vim 7.4 with no way to update,
16+
then simply perform the following commands to fix your current buffer:
17+
18+
```
19+
:set regexpengine=1
20+
:syntax enable
21+
```
22+
523
## Installation
624

725
- Install with [Vundle](https://github.com/gmarik/vundle)
@@ -51,13 +69,13 @@ Default Value: 0
5169

5270
## Contributing
5371

54-
This project uses the [git
55-
flow](http://nvie.com/posts/a-successful-git-branching-model/) model for
56-
development. There's [a handy git module for git
57-
flow](//github.com/nvie/gitflow). If you'd like to be added as a contributor,
58-
the price of admission is 1 pull request. Please follow the general code style
59-
guides (read the code) and in your pull request explain the reason for the
60-
proposed change and how it is valuable.
72+
This project uses the [git
73+
flow](http://nvie.com/posts/a-successful-git-branching-model/) model for
74+
development. There's [a handy git module for git
75+
flow](//github.com/nvie/gitflow). If you'd like to be added as a contributor,
76+
the price of admission is 1 pull request. Please follow the general code style
77+
guides (read the code) and in your pull request explain the reason for the
78+
proposed change and how it is valuable.
6179

6280
## Bug report
6381

0 commit comments

Comments
 (0)