summaryrefslogtreecommitdiff
path: root/fish/functions
diff options
context:
space:
mode:
authorThomas Ulmer <thomasmulmer02@gmail.com>2025-12-02 22:25:09 -0800
committerThomas Ulmer <thomasmulmer02@gmail.com>2025-12-02 22:25:09 -0800
commitf3023a0ee3d9cbcafb0df5d3c3426f74daf044b8 (patch)
treecf362bb26d77b300ad1d148778a9206610359be7 /fish/functions
parent166120b84c30e3125b2c8f7e858ef318c835dd69 (diff)
rm fish
Diffstat (limited to 'fish/functions')
-rw-r--r--fish/functions/autojump.fish12
1 files changed, 0 insertions, 12 deletions
diff --git a/fish/functions/autojump.fish b/fish/functions/autojump.fish
deleted file mode 100644
index a265845..0000000
--- a/fish/functions/autojump.fish
+++ /dev/null
@@ -1,12 +0,0 @@
-function j
- set new_path (autojump $argv)
-
- if test -d "$new_path"
- echo $new_path
- cd "$new_path"
- else
- echo "autojump: directory '$argv' not found"
- echo "Try \`autojump --help\` for more information."
- false
- end
-end