Control-r reverse-i-search in Cygwin bash: how do you "reset" the search? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T05:45:46Z http://stackoverflow.com/feeds/question/549810 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/549810/control-r-reverse-i-search-in-cygwin-bash-how-do-you-reset-the-search 2 Control-r reverse-i-search in Cygwin bash: how do you "reset" the search? dreftymac 2009-02-14T21:12:13Z 2009-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#549860 0 Answer by hayalci for Control-r reverse-i-search in Cygwin bash: how do you "reset" the search? hayalci 2009-02-14T21:46:12Z 2009-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#549863 1 Answer by Phil for Control-r reverse-i-search in Cygwin bash: how do you "reset" the search? Phil 2009-02-14T21:47:07Z 2009-02-14T21:47:07Z <pre><code>M-&gt; ... moves to end of history M-&lt; ... 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#549864 2 Answer by Tom Alsberg for Control-r reverse-i-search in Cygwin bash: how do you "reset" the search? Tom Alsberg 2009-02-14T21:47:51Z 2009-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>