diff options
author | Thomas Voss <mail@thomasvoss.com> | 2024-11-28 20:02:22 +0100 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2024-11-28 20:02:22 +0100 |
commit | eb6b73e114fdac565795c24449e737eaf8825193 (patch) | |
tree | 9a6706521c83c1257930f5f45decb70f1c0368f9 | |
parent | 4bfd864f10b68b71482b35c818559068ef8d5797 (diff) |
bash: Switch out cd with pushd
-rw-r--r-- | .bashrc | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -25,7 +25,7 @@ function jc { } function goto { - cd "$(fzf --literal --filepath-word --walker=dir --walker-root="$HOME")" + pushd "$(fzf --literal --filepath-word --walker=dir --walker-root="$HOME")" } export BROWSER="firefox" |