|
2 | 2 |
|
3 | 3 | JavaScript bundle for vim, this bundle provides syntax and indent plugins. |
4 | 4 |
|
| 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 | + |
5 | 23 | ## Installation |
6 | 24 |
|
7 | 25 | - Install with [Vundle](https://github.com/gmarik/vundle) |
@@ -51,13 +69,13 @@ Default Value: 0 |
51 | 69 |
|
52 | 70 | ## Contributing |
53 | 71 |
|
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. |
61 | 79 |
|
62 | 80 | ## Bug report |
63 | 81 |
|
|
0 commit comments