Control-r reverse-i-search in Cygwin bash: how do you "reset" the search? - Stack Overflow most recent 30 from stackoverflow.com2009-12-22T05:45:46Zhttp://stackoverflow.com/feeds/question/549810http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/549810/control-r-reverse-i-search-in-cygwin-bash-how-do-you-reset-the-search2Control-r reverse-i-search in Cygwin bash: how do you "reset" the search?dreftymac2009-02-14T21:12:13Z2009-02-14T22:03:19Z
<p><strong>Question:</strong> How do you tell ctrl-r reverse-i-search to "reset itself" and start searching from the bottom of your history every time?</p>
<p><strong>Background:</strong> When using reverse-i-search in bash, I always get stuck once it is finished searching up through the history and it cannot find any more matches. Sometimes I hit escape and re-invoke ctrl-R a second time, expecting it to start a fresh new search from the bottom of my history. However the "pointer" still seems to be at the previous place it left off in my history. </p>
<p>The problem is, I usually do not want this behavior. If I hit Escape, and then re-invoke ctrl-r, I would like that to indicate it should re-start from the bottom again and work its way back up.</p>
<p><strong>Update:</strong> I guess I should have mentioned I am using Cygwin on windows, as none of the so-far mentioned solutions work.</p>
http://stackoverflow.com/questions/549810/control-r-reverse-i-search-in-cygwin-bash-how-do-you-reset-the-search/549860#5498600Answer by hayalci for Control-r reverse-i-search in Cygwin bash: how do you "reset" the search?hayalci2009-02-14T21:46:12Z2009-02-14T22:01:09Z<p>My bash works as you are expecting. Maybe hitting "ctrl+C" instead of "esc" can help.</p>
<p>Also, you can search forward using "ctrl+s" </p>
<p><em>edit</em>: ctrl+s works if it does not send a "stop" to your terminal, i.e. if "stty -a" gives you "-ixon". You can change it by "stty -ixon". Thanks to @Phil for reminder.</p>
http://stackoverflow.com/questions/549810/control-r-reverse-i-search-in-cygwin-bash-how-do-you-reset-the-search/549863#5498631Answer by Phil for Control-r reverse-i-search in Cygwin bash: how do you "reset" the search?Phil2009-02-14T21:47:07Z2009-02-14T21:47:07Z<pre><code>M-> ... moves to end of history
M-< ... moves to start of history
</code></pre>
<p>Your left alt key is most likely your Meta key.</p>
<p>Man readline for more readline directives.</p>
http://stackoverflow.com/questions/549810/control-r-reverse-i-search-in-cygwin-bash-how-do-you-reset-the-search/549864#5498642Answer by Tom Alsberg for Control-r reverse-i-search in Cygwin bash: how do you "reset" the search?Tom Alsberg2009-02-14T21:47:51Z2009-02-14T22:03:19Z<p>I never tried making this the default when hitting Escape, but bash uses <code>readline</code> for input, which accepts Emacs-style keybindings by default, so you can go to the bottom using <code>M-></code> (usually either by combining Meta/Alt and <code>></code> or by following the Escape key with <code>></code>).</p>
<p>If <code>M-></code> does not work because your terminal does not let you enter that, try <code>^G</code> (Control and <code>G</code> simultaneously). That is the "cancel" stroke in Emacs and usually works with <code>readline</code> too.</p>