summaryrefslogtreecommitdiffstats
path: root/shell
diff options
context:
space:
mode:
authorAjeet D'Souza <98ajeet@gmail.com>2022-04-22 18:28:32 +0530
committerGitHub <noreply@github.com>2022-04-22 21:58:32 +0900
commit54841248e7a26ffe545220df2a444e11c96ec757 (patch)
treee32ec8e7285dbba05973def3d0ee7e0869f997a5 /shell
parenta0b42e6538092dc6dea9f918a7a74c9408e44d4c (diff)
[shell] ALT-C: Use builtin cd to avoid conflicts (#2799)
Diffstat (limited to 'shell')
-rw-r--r--shell/key-bindings.bash2
-rw-r--r--shell/key-bindings.fish2
-rw-r--r--shell/key-bindings.zsh2
3 files changed, 3 insertions, 3 deletions
diff --git a/shell/key-bindings.bash b/shell/key-bindings.bash
index d213ae08..92b377d5 100644
--- a/shell/key-bindings.bash
+++ b/shell/key-bindings.bash
@@ -41,7 +41,7 @@ __fzf_cd__() {
local cmd dir
cmd="${FZF_ALT_C_COMMAND:-"command find -L . -mindepth 1 \\( -path '*/\\.*' -o -fstype 'sysfs' -o -fstype 'devfs' -o -fstype 'devtmpfs' -o -fstype 'proc' \\) -prune \
-o -type d -print 2> /dev/null | cut -b3-"}"
- dir=$(eval "$cmd" | FZF_DEFAULT_OPTS="--height ${FZF_TMUX_HEIGHT:-40%} --reverse --bind=ctrl-z:ignore $FZF_DEFAULT_OPTS $FZF_ALT_C_OPTS" $(__fzfcmd) +m) && printf 'cd -- %q' "$dir"
+ dir=$(eval "$cmd" | FZF_DEFAULT_OPTS="--height ${FZF_TMUX_HEIGHT:-40%} --reverse --bind=ctrl-z:ignore $FZF_DEFAULT_OPTS $FZF_ALT_C_OPTS" $(__fzfcmd) +m) && printf 'builtin cd -- %q' "$dir"
}
__fzf_history__() {
diff --git a/shell/key-bindings.fish b/shell/key-bindings.fish
index 370ef1b6..36b3aa34 100644
--- a/shell/key-bindings.fish
+++ b/shell/key-bindings.fish
@@ -87,7 +87,7 @@ function fzf_key_bindings
eval "$FZF_ALT_C_COMMAND | "(__fzfcmd)' +m --query "'$fzf_query'"' | read -l result
if [ -n "$result" ]
- cd -- $result
+ builtin cd -- $result
# Remove last token from commandline.
commandline -t ""
diff --git a/shell/key-bindings.zsh b/shell/key-bindings.zsh
index 032cd439..fe219bf4 100644
--- a/shell/key-bindings.zsh
+++ b/shell/key-bindings.zsh
@@ -81,7 +81,7 @@ fzf-cd-widget() {
return 0
fi
zle push-line # Clear buffer. Auto-restored on next prompt.
- BUFFER="cd -- ${(q)dir}"
+ BUFFER="builtin cd -- ${(q)dir}"
zle accept-line
local ret=$?
unset dir # ensure this doesn't end up appearing in prompt expansion