summaryrefslogtreecommitdiffstats
path: root/shell
diff options
context:
space:
mode:
authorJunegunn Choi <junegunn.c@gmail.com>2023-10-19 09:58:36 +0900
committerJunegunn Choi <junegunn.c@gmail.com>2023-10-19 09:58:36 +0900
commit70c461c60bb1e2165a378e8ba0451b511c29b5cb (patch)
treeb664aa2e833f90cc4c368133346d7e99e8a3fb43 /shell
parentd51b71ee8039df8f51bd348b43c68ee462d4a496 (diff)
[bash] Preserve existing completion for ssh
Fix #3484
Diffstat (limited to 'shell')
-rw-r--r--shell/completion.bash2
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/completion.bash b/shell/completion.bash
index 0359f951..37a37948 100644
--- a/shell/completion.bash
+++ b/shell/completion.bash
@@ -481,7 +481,7 @@ a_cmds="
svn tar unzip zip"
# Preserve existing completion
-__fzf_orig_completion < <(complete -p $d_cmds $a_cmds 2> /dev/null)
+__fzf_orig_completion < <(complete -p $d_cmds $a_cmds ssh 2> /dev/null)
if type _completion_loader > /dev/null 2>&1; then
_fzf_completion_loader=1