All Projects → zsh-users → Zsh History Substring Search

zsh-users / Zsh History Substring Search

🐠 ZSH port of Fish history search (up arrow)

Programming Languages

shell
77523 projects

Projects that are alternatives of or similar to Zsh History Substring Search

Done
A fish-shell package to automatically receive notifications when long processes finish.
Stars: ✭ 394 (-76.89%)
Mutual labels:  fish-shell
Gitignore
Create .gitignore files from gitignore.io templates
Stars: ✭ 27 (-98.42%)
Mutual labels:  fish-shell
Awesome Zsh Plugins
A collection of ZSH frameworks, plugins, themes and tutorials.
Stars: ✭ 10,129 (+494.08%)
Mutual labels:  zsh-plugins
Symfony Console Autocomplete
Shell autocompletion for Symfony Console based scripts
Stars: ✭ 465 (-72.73%)
Mutual labels:  fish-shell
Dotfiles
📁 📋 📎
Stars: ✭ 6 (-99.65%)
Mutual labels:  fish-shell
Breeze
git tool for fish-shell
Stars: ✭ 52 (-96.95%)
Mutual labels:  fish-shell
Fzf.fish
Augment your fish command line with fzf key bindings.
Stars: ✭ 255 (-85.04%)
Mutual labels:  fish-shell
Fish Bd
Quickly go back to a parent directory up in your current working directory tree. Don't write 'cd ../../..' redundantly, use bd instead.
Stars: ✭ 113 (-93.37%)
Mutual labels:  fish-shell
Spacefish
🚀🐟 The fish shell prompt for astronauts
Stars: ✭ 856 (-49.79%)
Mutual labels:  fish-shell
Nix Env.fish
Nix environment setup for the fish shell
Stars: ✭ 66 (-96.13%)
Mutual labels:  fish-shell
Fzf
Ef-🐟-ient fish keybindings for fzf
Stars: ✭ 599 (-64.87%)
Mutual labels:  fish-shell
Virtualfish
Fish shell tool for managing Python virtual environments
Stars: ✭ 819 (-51.96%)
Mutual labels:  fish-shell
Powerline.fish
Stars: ✭ 55 (-96.77%)
Mutual labels:  fish-shell
Fish Kubectl Completions
kubectl completions for fish shell
Stars: ✭ 453 (-73.43%)
Mutual labels:  fish-shell
Fish Utils
🔧 My utility belt of fish functions, writing these has saved me many hours in the long run... I hope...
Stars: ✭ 94 (-94.49%)
Mutual labels:  fish-shell
Dtags
Directory Tags for Lazy Programmers
Stars: ✭ 351 (-79.41%)
Mutual labels:  fish-shell
To Fish
Bookmarks for Fish Shell
Stars: ✭ 44 (-97.42%)
Mutual labels:  fish-shell
Gitnow
Speed up your Git workflow. 🐠
Stars: ✭ 117 (-93.14%)
Mutual labels:  fish-shell
Zsh Nvm
Zsh plugin for installing, updating and loading nvm
Stars: ✭ 1,670 (-2.05%)
Mutual labels:  zsh-plugins
Angel Ps1
Your fancy shell prompt fed by your guardian angel
Stars: ✭ 60 (-96.48%)
Mutual labels:  fish-shell

zsh-history-substring-search

This is a clean-room implementation of the Fish shell's history search feature, where you can type in any part of any command from history and then press chosen keys, such as the UP and DOWN arrows, to cycle through matches.

Requirements

  • ZSH 4.3 or newer

Install

Using the Homebrew package manager:

brew install zsh-history-substring-search
echo 'source /usr/local/share/zsh-history-substring-search/zsh-history-substring-search.zsh' >> ~/.zshrc

Using Oh-my-zsh:

  1. Clone this repository in oh-my-zsh's plugins directory:

     git clone https://github.com/zsh-users/zsh-history-substring-search ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-history-substring-search
    
  2. Activate the plugin in ~/.zshrc:

     plugins=( [plugins...] zsh-history-substring-search)
    
  3. Source ~/.zshrc to take changes into account:

     source ~/.zshrc
    

Usage

  1. Load this script into your interactive ZSH session:

    % source zsh-history-substring-search.zsh
    

    If you want to use zsh-syntax-highlighting along with this script, then make sure that you load it before you load this script:

    % source zsh-syntax-highlighting.zsh
    % source zsh-history-substring-search.zsh
    
  2. Bind keyboard shortcuts to this script's functions.

    Users typically bind their UP and DOWN arrow keys to this script, thus:

    • Run cat -v in your favorite terminal emulator to observe key codes.      (NOTE: In some cases, cat -v shows the wrong key codes. If the key codes shown by cat -v don't work for you, press <C-v><UP> and <C-v><DOWN> at your ZSH command line prompt for correct key codes.)

    • Press the UP arrow key and observe what is printed in your terminal.

    • Press the DOWN arrow key and observe what is printed in your terminal.

    • Press the Control and C keys simultaneously to terminate the cat -v.

    • Use your observations from the previous steps to create key bindings. For example, if you observed ^[[A for UP and ^[[B for DOWN, then:

      bindkey '^[[A' history-substring-search-up
      bindkey '^[[B' history-substring-search-down
      

      However, if the observed values don't work, you can try using terminfo:

      bindkey "$terminfo[kcuu1]" history-substring-search-up
      bindkey "$terminfo[kcud1]" history-substring-search-down
      

      You might also want to bind the Control-P/N keys for use in EMACS mode:

      bindkey -M emacs '^P' history-substring-search-up
      bindkey -M emacs '^N' history-substring-search-down
      

      You might also want to bind the k and j keys for use in VI mode:

      bindkey -M vicmd 'k' history-substring-search-up
      bindkey -M vicmd 'j' history-substring-search-down
      
  3. Type any part of any previous command and then:

    • Press the history-substring-search-up key, which was configured in step 2 above, to select the nearest command that (1) contains your query and (2) is also older than the current command in your command history.

    • Press the history-substring-search-down key, which was configured in step 2 above, to select the nearest command that (1) contains your query and (2) is also newer than the current command in your command history.

    • Press ^U the Control and U keys simultaneously to abort the search.

  4. If a matching command spans more than one line of text, press the LEFT arrow key to move the cursor away from the end of the command, and then:

    • Press the history-substring-search-up key, which was configured in step 2 above, to move the cursor to the line above the cursored line. When the cursor reaches the first line of the command, pressing the history-substring-search-up key again will cause this script to perform another search.

    • Press the history-substring-search-down key, which was configured in step 2 above, to move the cursor to the line below the cursored line. When the cursor reaches the last line of the command, pressing the history-substring-search-down key, which was configured in step 2 above, again will cause this script to perform another search.

Configuration

This script defines the following global variables. You may override their default values.

  • HISTORY_SUBSTRING_SEARCH_HIGHLIGHT_FOUND is a global variable that defines how the query should be highlighted inside a matching command. Its default value causes this script to highlight using bold, white text on a magenta background. See the "Character Highlighting" section in the zshzle(1) man page to learn about the kinds of values you may assign to this variable.

  • HISTORY_SUBSTRING_SEARCH_HIGHLIGHT_NOT_FOUND is a global variable that defines how the query should be highlighted when no commands in the history match it. Its default value causes this script to highlight using bold, white text on a red background. See the "Character Highlighting" section in the zshzle(1) man page to learn about the kinds of values you may assign to this variable.

  • HISTORY_SUBSTRING_SEARCH_GLOBBING_FLAGS is a global variable that defines how the command history will be searched for your query. Its default value causes this script to perform a case-insensitive search. See the "Globbing Flags" section in the zshexpn(1) man page to learn about the kinds of values you may assign to this variable.

  • HISTORY_SUBSTRING_SEARCH_FUZZY is a global variable that defines how the command history will be searched for your query. If set to a non-empty value, causes this script to perform a fuzzy search by words, matching in given order e.g. ab c will match *ab*c*

  • HISTORY_SUBSTRING_SEARCH_PREFIXED is a global variable that defines how the command history will be searched for your query. If set to a non-empty value, your query will be matched against the start of each history entry. For example, if this variable is empty, ls will match ls -l and echo ls; if it is non-empty, ls will only match ls -l.

  • HISTORY_SUBSTRING_SEARCH_ENSURE_UNIQUE is a global variable that defines whether all search results returned are unique. If set to a non-empty value, then only unique search results are presented. This behaviour is off by default. An alternative way to ensure that search results are unique is to use setopt HIST_IGNORE_ALL_DUPS. If this configuration variable is off and setopt HIST_IGNORE_ALL_DUPS is unset, then setopt HIST_FIND_NO_DUPS is still respected and it makes this script skip duplicate adjacent search results as you cycle through them, but this does not guarantee that search results are unique: if your search results were "Dog", "Dog", "HotDog", "Dog", then cycling them gives "Dog", "HotDog", "Dog". Notice that the "Dog" search result appeared twice as you cycled through them. If you wish to receive globally unique search results only once, then use this configuration variable, or use setopt HIST_IGNORE_ALL_DUPS.

History

  • September 2009: Peter Stephenson originally wrote this script and it published to the zsh-users mailing list.

  • January 2011: Guido van Steen (@guidovansteen) revised this script and released it under the 3-clause BSD license as part of fizsh, the Friendly Interactive ZSHell.

  • January 2011: Suraj N. Kurapati (@sunaku) extracted this script from fizsh 1.0.1, refactored it heavily, and finally repackaged it as an oh-my-zsh plugin and as an independently loadable ZSH script.

  • July 2011: Guido van Steen, Suraj N. Kurapati, and Sorin Ionescu (@sorin-ionescu) further developed it with Vincent Guerci (@vguerci).

  • March 2016: Geza Lore (@gezalore) greatly refactored it in pull request #55.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].