<feed xmlns='http://www.w3.org/2005/Atom'>
<title>vim-tabs-grep, branch master</title>
<subtitle>Filter the output of the :tabs command</subtitle>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/vim-tabs-grep/'/>
<entry>
<title>Increase version v0.0.1 -&gt; v1.0.0</title>
<updated>2018-04-19T20:13:20+00:00</updated>
<author>
<name>Teddy Wing</name>
</author>
<published>2018-04-19T20:13:20+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/vim-tabs-grep/commit/?id=26b4bb09a315b2b99d1c6084f70ac6989648511e'/>
<id>26b4bb09a315b2b99d1c6084f70ac6989648511e</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add CHANGELOG</title>
<updated>2018-04-19T20:04:48+00:00</updated>
<author>
<name>Teddy Wing</name>
</author>
<published>2018-04-19T20:04:48+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/vim-tabs-grep/commit/?id=71431c8e49f80feaca3ac45121e0e11604854436'/>
<id>71431c8e49f80feaca3ac45121e0e11604854436</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'use-globs-to-match-files'</title>
<updated>2018-04-19T19:59:40+00:00</updated>
<author>
<name>Teddy Wing</name>
</author>
<published>2018-04-19T19:59:40+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/vim-tabs-grep/commit/?id=624c5ac4281c0cf816c25344ab69a17bfa2ba7c5'/>
<id>624c5ac4281c0cf816c25344ab69a17bfa2ba7c5</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>doc: Update for the change from regex pattern to glob</title>
<updated>2018-04-19T19:49:45+00:00</updated>
<author>
<name>Teddy Wing</name>
</author>
<published>2018-04-19T19:49:45+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/vim-tabs-grep/commit/?id=da277858f1da1931ac17cbe9f095ea0541051f88'/>
<id>da277858f1da1931ac17cbe9f095ea0541051f88</id>
<content type='text'>
Change past references to "pattern" into "glob". The command no longer
accepts regex patterns. Instead it takes a file glob, which is faster to
type and potentially more intuitive.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Change past references to "pattern" into "glob". The command no longer
accepts regex patterns. Instead it takes a file glob, which is faster to
type and potentially more intuitive.
</pre>
</div>
</content>
</entry>
<entry>
<title>Take a glob instead of a regex pattern</title>
<updated>2018-04-19T19:21:23+00:00</updated>
<author>
<name>Teddy Wing</name>
</author>
<published>2018-04-19T19:21:23+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/vim-tabs-grep/commit/?id=2bd37ac201efda3bf93a0eb4c70e45fa952d8fa0'/>
<id>2bd37ac201efda3bf93a0eb4c70e45fa952d8fa0</id>
<content type='text'>
Globs make it easier to match file and directory names. For example,
instead of writing:

    :TabsGrep utol.*grep

we can write:

    :TabsGrep utol*grep

Discovered `glob2regpat()` in the help while searching for a way to take
a glob in my command and it ended up being the perfect thing, yay.

Needed to slice the regex returned by the function to discard the first
and last characters, as it automatically adds `^$` delimiters around the
generated regex pattern. This doesn't make sense for our use case
because we want to be able to start writing from anywhere in the middle
of the path, and not have to add `*`s to the beginning and end.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Globs make it easier to match file and directory names. For example,
instead of writing:

    :TabsGrep utol.*grep

we can write:

    :TabsGrep utol*grep

Discovered `glob2regpat()` in the help while searching for a way to take
a glob in my command and it ended up being the perfect thing, yay.

Needed to slice the regex returned by the function to discard the first
and last characters, as it automatically adds `^$` delimiters around the
generated regex pattern. This doesn't make sense for our use case
because we want to be able to start writing from anywhere in the middle
of the path, and not have to add `*`s to the beginning and end.
</pre>
</div>
</content>
</entry>
<entry>
<title>Add license (GNU GPLv3+)</title>
<updated>2018-04-07T23:07:49+00:00</updated>
<author>
<name>Teddy Wing</name>
</author>
<published>2018-04-07T23:07:49+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/vim-tabs-grep/commit/?id=044835706eb9e4053dc750b4b9403e6e5173006b'/>
<id>044835706eb9e4053dc750b4b9403e6e5173006b</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add README</title>
<updated>2018-04-07T23:06:26+00:00</updated>
<author>
<name>Teddy Wing</name>
</author>
<published>2018-04-07T23:06:26+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/vim-tabs-grep/commit/?id=970beff3a40549043815c8341b40d0ed7ab8515e'/>
<id>970beff3a40549043815c8341b40d0ed7ab8515e</id>
<content type='text'>
Include a very short description and a Gif screencast.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Include a very short description and a Gif screencast.
</pre>
</div>
</content>
</entry>
<entry>
<title>Add documentation</title>
<updated>2018-04-07T22:45:12+00:00</updated>
<author>
<name>Teddy Wing</name>
</author>
<published>2018-04-07T22:45:12+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/vim-tabs-grep/commit/?id=cc6b632b401bc137136ce35be4832910b5c2849d'/>
<id>cc6b632b401bc137136ce35be4832910b5c2849d</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Only load the plugin once</title>
<updated>2018-04-07T22:15:30+00:00</updated>
<author>
<name>Teddy Wing</name>
</author>
<published>2018-04-07T22:14:36+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/vim-tabs-grep/commit/?id=feababe82edc183a20f5b410aff5f4dc21ab4d32'/>
<id>feababe82edc183a20f5b410aff5f4dc21ab4d32</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Move functions to autoload/</title>
<updated>2018-04-07T22:12:37+00:00</updated>
<author>
<name>Teddy Wing</name>
</author>
<published>2018-04-07T22:12:37+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/vim-tabs-grep/commit/?id=8868b071355638d3a8df26249216f46d8709b91d'/>
<id>8868b071355638d3a8df26249216f46d8709b91d</id>
<content type='text'>
Now that the plugin works and I'm done with the main development, move
everything from `plugin/` to `autoload/`.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Now that the plugin works and I'm done with the main development, move
everything from `plugin/` to `autoload/`.
</pre>
</div>
</content>
</entry>
</feed>
