From e74b1251c0f579335e03b3e7182cd7a9f88dbe37 Mon Sep 17 00:00:00 2001 From: Junegunn Choi Date: Wed, 13 Mar 2024 23:59:34 +0900 Subject: Embed shell integration scripts in fzf binary (`--bash` / `--zsh` / `--fish`) (#3675) This simplifies the distribution, and the users are less likely to have problems caused by using incompatible scripts and binaries. # Set up fzf key bindings and fuzzy completion eval "$(fzf --bash)" # Set up fzf key bindings and fuzzy completion eval "$(fzf --zsh)" # Set up fzf key bindings fzf --fish | source --- uninstall | 1 + 1 file changed, 1 insertion(+) (limited to 'uninstall') diff --git a/uninstall b/uninstall index 4e587211..1d338cb4 100755 --- a/uninstall +++ b/uninstall @@ -94,6 +94,7 @@ done bind_file="${fish_dir}/functions/fish_user_key_bindings.fish" if [ -f "$bind_file" ]; then remove_line "$bind_file" "fzf_key_bindings" + remove_line "$bind_file" "fzf --fish | source" fi if [ -d "${fish_dir}/functions" ]; then -- cgit v1.2.3