summaryrefslogtreecommitdiff
path: root/functions/sshk.fish
diff options
context:
space:
mode:
authorache <ache@ache.one>2026-03-07 10:04:46 +0100
committerache <ache@ache.one>2026-03-07 10:04:46 +0100
commit8b975a73c0a3d4ea2ba9cad523a47599a76c1507 (patch)
treef1ba8f93f2052f06241f7af1aee12f9371cc8b67 /functions/sshk.fish
parentfix: Kwaky is a dark and light theme (diff)
fix: SSH kiten integration
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