<feed xmlns='http://www.w3.org/2005/Atom'>
<title>vim-easytags.git/misc/easytags, branch master</title>
<subtitle>Unnamed repository; edit this file 'description' to name the repository.
</subtitle>
<id>https://git.airen-no-jikken.icu/vim-easytags.git/atom?h=master</id>
<link rel='self' href='https://git.airen-no-jikken.icu/vim-easytags.git/atom?h=master'/>
<link rel='alternate' type='text/html' href='https://git.airen-no-jikken.icu/vim-easytags.git/'/>
<updated>2014-03-08T23:18:17Z</updated>
<entry>
<title>Replace \0 by \g&lt;0&gt; in python sub</title>
<updated>2014-03-08T23:18:17Z</updated>
<author>
<name>mat tso</name>
<email>mat-tso@topmail.ie</email>
</author>
<published>2014-03-08T22:39:34Z</published>
<link rel='alternate' type='text/html' href='https://git.airen-no-jikken.icu/vim-easytags.git/commit/?id=ed295020ae557161868208fe443fd7e6089639aa'/>
<id>urn:sha1:ed295020ae557161868208fe443fd7e6089639aa</id>
<content type='text'>
&gt; The back reference \g&lt;0&gt; substitutes in the entire substring
&gt; matched by the RE.
&gt; http://docs.python.org/2/library/re.html#re.sub

The documentation does not mention \0 as an alias to it.
Although \1 to \9 works.

I guess this alias (\0 &lt;=&gt; \g&lt;0&gt;) existed in old python version,
but it is not the case any more.

In python 2.7 and 3.3:
&gt; import re; re.compile(r'123').sub(r'@\0@',"ab123cd")
'ab@\x00@cd' # KO
&gt; import re; re.compile(r'123').sub(r'@\g&lt;0&gt;@',"ab123cd")
'ab@123@cd' # OK
</content>
</entry>
<entry>
<title>Merge pull request #63: fix 'multiple repeat' error from regex for c++ filetypes</title>
<updated>2013-08-31T13:30:27Z</updated>
<author>
<name>Peter Odding</name>
<email>peter@peterodding.com</email>
</author>
<published>2013-08-31T13:30:27Z</published>
<link rel='alternate' type='text/html' href='https://git.airen-no-jikken.icu/vim-easytags.git/commit/?id=330ec57f84b46268ef5b5ddb21ec2d9a660750d2'/>
<id>urn:sha1:330ec57f84b46268ef5b5ddb21ec2d9a660750d2</id>
<content type='text'>
See pull request #63 on GitHub:
  https://github.com/xolox/vim-easytags/pull/63
</content>
</entry>
<entry>
<title>fix 'multiple repeat' error from regex for c++ filetypes</title>
<updated>2013-08-27T11:08:05Z</updated>
<author>
<name>Julian Taylor</name>
<email>jtaylor.debian@googlemail.com</email>
</author>
<published>2013-08-27T11:08:05Z</published>
<link rel='alternate' type='text/html' href='https://git.airen-no-jikken.icu/vim-easytags.git/commit/?id=e79da3eff3ee3c8af0953052dfa58b4aee96fd15'/>
<id>urn:sha1:e79da3eff3ee3c8af0953052dfa58b4aee96fd15</id>
<content type='text'>
unescaped ++ is invalid regex causing easytag to fall back to the
vimscript highlighting which does not split the regex into small chunks
that vim can handle.
</content>
</entry>
<entry>
<title>Make list of ignored syntax groups configurable</title>
<updated>2011-10-29T15:32:33Z</updated>
<author>
<name>Peter Odding</name>
<email>peter@peterodding.com</email>
</author>
<published>2011-10-29T15:32:33Z</published>
<link rel='alternate' type='text/html' href='https://git.airen-no-jikken.icu/vim-easytags.git/commit/?id=e3290ab006edf7c262a0bd117577043ce33435c6'/>
<id>urn:sha1:e3290ab006edf7c262a0bd117577043ce33435c6</id>
<content type='text'>
While trying to fix issue #20 I decided to refactor the code that
handles ignored syntax groups: Previously the list of excluded groups
was hard coded in two places, now it's a configuration option. Then
it turned out that including shFunction* in the list of excluded
syntax groups didn't fix the reported issue...
</content>
</entry>
<entry>
<title>normalize-tags.py: Enable normalizing several files at once</title>
<updated>2011-09-04T11:12:38Z</updated>
<author>
<name>Peter Odding</name>
<email>peter@peterodding.com</email>
</author>
<published>2011-09-04T11:12:38Z</published>
<link rel='alternate' type='text/html' href='https://git.airen-no-jikken.icu/vim-easytags.git/commit/?id=8a186f47967ef1e6eb7dae272c6722ab1494f678'/>
<id>urn:sha1:8a186f47967ef1e6eb7dae272c6722ab1494f678</id>
<content type='text'>
</content>
</entry>
<entry>
<title>2x faster syntax highlighting using Python Interface to Vim :-)</title>
<updated>2011-06-14T04:43:24Z</updated>
<author>
<name>Peter Odding</name>
<email>peter@peterodding.com</email>
</author>
<published>2011-06-14T04:43:24Z</published>
<link rel='alternate' type='text/html' href='https://git.airen-no-jikken.icu/vim-easytags.git/commit/?id=9abe34873b1ea7c5fcc0bad20b311d85b04fc648'/>
<id>urn:sha1:9abe34873b1ea7c5fcc0bad20b311d85b04fc648</id>
<content type='text'>
</content>
</entry>
</feed>
