Shellhop adds incremental search of your command line to bash and zsh. It's similar to Ctrl-S and Ctrl-R, but it searches only within the current line and highlights all matches.
Build shellhop:
git clone git://github.com/rlane/shellhop
cd shellhop
make
Add this to your bashrc:
eval $(/path/to/shellhop --bash)
You can change the keybinding (default Ctrl-X Ctrl-F) with the
--key
option:
eval $(/path/to/shellhop --bash --key \\C-S)
Zsh is also supported:
eval $(/path/to/shellhop --zsh)
When editing a command line, type Ctrl-X Ctrl-F. You'll see a
(shellhop)
prompt followed by the line. Start typing the text at the location
you wish to move the cursor to. Matches will be highlighted as you type. When
there is a unique match, hit Enter to accept it. Shellhop will exit
and leave the cursor in the desired position.
Use Ctrl-N and Ctrl-P to cycle between multiple matches. The current match will be highlighted and the others underlined.
Fork the project and send a pull request.
To run the test suite:
python test.py
Be sure to add a new test if contributing a feature or bugfix.
Copyright 2017 Rich Lane
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.