summaryrefslogtreecommitdiff
path: root/functions/sshk.fish
diff options
context:
space:
mode:
Diffstat (limited to 'functions/sshk.fish')
-rw-r--r--functions/sshk.fish12
1 files changed, 0 insertions, 12 deletions
diff --git a/functions/sshk.fish b/functions/sshk.fish
deleted file mode 100644
index 4eb261a..0000000
--- a/functions/sshk.fish
+++ /dev/null
@@ -1,12 +0,0 @@
-# This is a test
-
-function ssh -d "SSH but with kitty integration"
- # If fish is run inside a kitty terminal then use the kitten command integration.
- if [ "$TERM" = "xterm-kitty" ]
- kitten ssh $argv
- else
- # Otherwise, just use the default ssh command.
- set -l sshBin $(type --no-functions --path ssh)
- $sshBin $argv
- end
-end