<feed xmlns='http://www.w3.org/2005/Atom'>
<title>vim-searchop/plugin, branch master</title>
<subtitle>Operators to search using a text object</subtitle>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/vim-searchop/'/>
<entry>
<title>plugin/searchop.vim: Fix default map guards</title>
<updated>2020-02-10T20:31:35+00:00</updated>
<author>
<name>Teddy Wing</name>
</author>
<published>2020-02-10T20:31:35+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/vim-searchop/commit/?id=196b6e08cc06d40e85f1d58b1455230196a0a871'/>
<id>196b6e08cc06d40e85f1d58b1455230196a0a871</id>
<content type='text'>
Check for normal and visual modes separately before defining default
mappings. Previously I was only verifying that normal mode mappings were
available and defining visual mode mappings without explicit checks.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Check for normal and visual modes separately before defining default
mappings. Previously I was only verifying that normal mode mappings were
available and defining visual mode mappings without explicit checks.
</pre>
</div>
</content>
</entry>
<entry>
<title>Add license (GNU GPLv3+)</title>
<updated>2020-02-05T22:20:35+00:00</updated>
<author>
<name>Teddy Wing</name>
</author>
<published>2020-02-05T22:20:35+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/vim-searchop/commit/?id=549130ea296255817782405c3f79633676821af4'/>
<id>549130ea296255817782405c3f79633676821af4</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>plugin/searchop.vim: Add `&lt;Plug&gt;` mappings</title>
<updated>2020-02-05T22:13:43+00:00</updated>
<author>
<name>Teddy Wing</name>
</author>
<published>2020-02-05T22:13:43+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/vim-searchop/commit/?id=3b417b4aa2fd78f72e180ca87a3fd65786ffc340'/>
<id>3b417b4aa2fd78f72e180ca87a3fd65786ffc340</id>
<content type='text'>
Move hard-coded `z#` and `z*` mappings to `&lt;Plug&gt;` mappings.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Move hard-coded `z#` and `z*` mappings to `&lt;Plug&gt;` mappings.
</pre>
</div>
</content>
</entry>
<entry>
<title>plugin/searchop.vim: Add load guard</title>
<updated>2020-02-05T22:07:55+00:00</updated>
<author>
<name>Teddy Wing</name>
</author>
<published>2020-02-05T22:07:55+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/vim-searchop/commit/?id=c292377efc09f8ecdfbf55873d72dec1927dac63'/>
<id>c292377efc09f8ecdfbf55873d72dec1927dac63</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>2020-02-05T22:02:27+00:00</updated>
<author>
<name>Teddy Wing</name>
</author>
<published>2020-02-05T22:02:27+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/vim-searchop/commit/?id=682926ad56ff1ce2f6498eed1cefa021dbe04839'/>
<id>682926ad56ff1ce2f6498eed1cefa021dbe04839</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>plugin/searchop.vim: Change search forward mappings to `z*`</title>
<updated>2020-02-05T20:59:31+00:00</updated>
<author>
<name>Teddy Wing</name>
</author>
<published>2020-02-05T20:59:31+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/vim-searchop/commit/?id=586a637241fd00b6f3cf34d725fb923fad9007de'/>
<id>586a637241fd00b6f3cf34d725fb923fad9007de</id>
<content type='text'>
Now that we have both forward and backward directions, use #/*-based
mappings.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Now that we have both forward and backward directions, use #/*-based
mappings.
</pre>
</div>
</content>
</entry>
<entry>
<title>Add backward search mappings</title>
<updated>2020-02-05T20:48:51+00:00</updated>
<author>
<name>Teddy Wing</name>
</author>
<published>2020-02-05T20:48:51+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/vim-searchop/commit/?id=5c81308422ffdabce506e084e83fa883be535a1c'/>
<id>5c81308422ffdabce506e084e83fa883be535a1c</id>
<content type='text'>
Allow searching backward as well as forward.

Add new functions specific to each search direction.

Thanks to 'mattn' (https://www.reddit.com/user/mattn/) for describing
how to pass variadic arguments to a Vim function:
https://www.reddit.com/r/vim/comments/3761po/vimscript_question_passing_arguments_from_a/crk07lz/
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Allow searching backward as well as forward.

Add new functions specific to each search direction.

Thanks to 'mattn' (https://www.reddit.com/user/mattn/) for describing
how to pass variadic arguments to a Vim function:
https://www.reddit.com/r/vim/comments/3761po/vimscript_question_passing_arguments_from_a/crk07lz/
</pre>
</div>
</content>
</entry>
<entry>
<title>Search(): Support visual mode and line-oriented</title>
<updated>2020-02-05T00:03:52+00:00</updated>
<author>
<name>Teddy Wing</name>
</author>
<published>2020-02-05T00:03:52+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/vim-searchop/commit/?id=b49d25965be039a932264d7e954837405f60d8c9'/>
<id>b49d25965be039a932264d7e954837405f60d8c9</id>
<content type='text'>
Escape newlines so that multiline search works.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Escape newlines so that multiline search works.
</pre>
</div>
</content>
</entry>
<entry>
<title>Search(): Don't overwrite the unnamed register</title>
<updated>2020-02-04T23:06:50+00:00</updated>
<author>
<name>Teddy Wing</name>
</author>
<published>2020-02-04T23:06:50+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/vim-searchop/commit/?id=6c24e799067121a417dd79c9ba5415ae82cda145'/>
<id>6c24e799067121a417dd79c9ba5415ae82cda145</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>plugin/searchop.vim: Use z/ mapping</title>
<updated>2020-02-04T21:52:05+00:00</updated>
<author>
<name>Teddy Wing</name>
</author>
<published>2020-02-04T21:40:34+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/vim-searchop/commit/?id=52f545dca74adedf5b1d88295749c91e0821647b'/>
<id>52f545dca74adedf5b1d88295749c91e0821647b</id>
<content type='text'>
Seems right, since I'm already using `g/` in vim-nohai.

However, consider using a `#`- `*`-based mapping instead to handle
forward and backward searching.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Seems right, since I'm already using `g/` in vim-nohai.

However, consider using a `#`- `*`-based mapping instead to handle
forward and backward searching.
</pre>
</div>
</content>
</entry>
</feed>
