aboutsummaryrefslogtreecommitdiff
path: root/.config/fish
diff options
context:
space:
mode:
Diffstat (limited to '.config/fish')
-rw-r--r--.config/fish/functions/fish_open_override.fish19
1 files changed, 0 insertions, 19 deletions
diff --git a/.config/fish/functions/fish_open_override.fish b/.config/fish/functions/fish_open_override.fish
deleted file mode 100644
index 1e5e58f..0000000
--- a/.config/fish/functions/fish_open_override.fish
+++ /dev/null
@@ -1,19 +0,0 @@
-function open
- if command -v xdg-open > /dev/null
- xdg-open $argv
- return
- end
-
- if test (uname) = "Darwin"
- command open $argv
- return
- end
-
- if test (uname) = "Haiku"
- command open $argv
- return
- end
-
- echo "error: could not detect the open command for your system."
- return 1
-end