Created
June 28, 2016 00:22
-
-
Save akatrevorjay/50070b3874c24a94e8a87d63129777a8 to your computer and use it in GitHub Desktop.
Zsh: Insert all completions/matches via bound key
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# ^Xa to insert all matches | |
zle -C all-matches complete-word _generic | |
bindkey '^Xa' all-matches | |
zstyle ':completion:all-matches:*' old-matches only | |
zstyle ':completion:all-matches::::' completer _all_matches |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment