fzf: spoon feed information about how to setup key bindings
zsh might have a better mechanism, but this works!
This commit is contained in:
parent
a3f5531907
commit
ece69eff2a
1 changed files with 31 additions and 0 deletions
31
sysutils/fzf/MESSAGE
Normal file
31
sysutils/fzf/MESSAGE
Normal file
|
@ -0,0 +1,31 @@
|
|||
===========================================================================
|
||||
$NetBSD: MESSAGE,v 1.1 2017/10/25 10:42:13 maya Exp $
|
||||
fzf comes with bindings for bash, zsh and fish.
|
||||
You can install them in the following way:
|
||||
|
||||
bash/zsh:
|
||||
Append key bindings and completion files to ~/.bashrc:
|
||||
cat PREFIX/gopkg/src/github.com/junegunn/fzf/shell/key-bindings.bash \
|
||||
PREFIX/gopkg/src/github.com/junegunn/fzf/shell/key-bindings.bash \
|
||||
>> ~/.bashrc
|
||||
source ~/.bashrc
|
||||
|
||||
or ~/.zshrc:
|
||||
cat PREFIX/gopkg/src/github.com/junegunn/fzf/shell/key-bindings.zsh \
|
||||
PREFIX/gopkg/src/github.com/junegunn/fzf/shell/key-bindings.zsh \
|
||||
>> ~/.zshrc
|
||||
source ~/.zshrc
|
||||
|
||||
fish:
|
||||
cp PREFIX/gopkg/src/github.com/junegunn/fzf/shell/key-bindings.fish \
|
||||
~/.config/fish/functions/fzf_key_bindings.fish
|
||||
|
||||
Add "fzf_key_bindings" to fish_user_key_bindings.
|
||||
If you don't have one, use:
|
||||
|
||||
echo "
|
||||
function fish_user_key_bindings
|
||||
fzf_key_bindings
|
||||
end
|
||||
" > ~/.config/fish/functions/fish_user_key_bindings.fish
|
||||
===========================================================================
|
Loading…
Reference in a new issue