Skip to content

Commit 110673a

Browse files
committed
Merge pull request #78: Bug fix for accelerated highlighting using Python
2 parents 9713f0a + ed29502 commit 110673a

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -313,8 +313,8 @@ If you have questions, bug reports, suggestions, etc. the author can be contacte
313313

314314
## License
315315

316-
This software is licensed under the [MIT license](http://en.wikipedia.org/wiki/MIT_License).
317-
© 2013 Peter Odding &lt;<peter@peterodding.com>&gt;.
316+
This software is licensed under the [MIT license](http://en.wikipedia.org/wiki/MIT_License).
317+
© 2014 Peter Odding &lt;<peter@peterodding.com>&gt;.
318318

319319

320320
[canon]: http://en.wikipedia.org/wiki/Canonicalization

autoload/xolox/easytags.vim

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
" Vim script
22
" Author: Peter Odding <peter@peterodding.com>
3-
" Last Change: September 1, 2013
3+
" Last Change: June 16, 2014
44
" URL: http://peterodding.com/code/vim/easytags/
55

6-
let g:xolox#easytags#version = '3.4.3'
6+
let g:xolox#easytags#version = '3.4.4'
77

88
" Plug-in initialization. {{{1
99

doc/easytags.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -647,7 +647,7 @@ easytags. If you like this plug-in please vote for it on Vim Online [21].
647647
*easytags-license*
648648
License ~
649649

650-
This software is licensed under the MIT license [22]. Š 2013 Peter Odding
650+
This software is licensed under the MIT license [22]. Š 2014 Peter Odding
651651
<peter@peterodding.com>.
652652

653653
===============================================================================

misc/easytags/highlight.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
generation in Python with a focus on doing the least amount of work.
66
77
Author: Peter Odding <peter@peterodding.com>
8-
Last Change: August 31, 2013
8+
Last Change: March 8, 2014
99
URL: http://peterodding.com/code/vim/easytags
1010
'''
1111

@@ -39,7 +39,7 @@ def easytags_gensyncmd(tagsfiles, filetype, tagkinds, syntaxgroup, prefix, suffi
3939
counter, limit = 0, 1024 * 20
4040
to_escape = re.compile(r'[.*^$/\\~\[\]]')
4141
for ident in matches.keys():
42-
escaped = to_escape.sub(r'\\\0', ident)
42+
escaped = to_escape.sub(r'\\\g<0>', ident)
4343
patterns.append(escaped)
4444
counter += len(escaped)
4545
if counter > limit:

0 commit comments

Comments
 (0)