From 8b975a73c0a3d4ea2ba9cad523a47599a76c1507 Mon Sep 17 00:00:00 2001 From: ache Date: Sat, 7 Mar 2026 10:04:46 +0100 Subject: fix: SSH kiten integration --- functions/sshk.fish | 12 ------------ 1 file changed, 12 deletions(-) delete mode 100644 functions/sshk.fish (limited to 'functions/sshk.fish') 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 -- cgit v1.3-2-g11bf