summaryrefslogtreecommitdiff
path: root/functions/ssh.fish
diff options
context:
space:
mode:
authorache <ache@ache.one>2024-12-17 10:14:11 +0100
committerache <ache@ache.one>2024-12-17 10:14:11 +0100
commit270d84500f4f7c844435dcef81b138ad7281e084 (patch)
tree8fa70cd64a20aee5a71f0586114b56fe7d7403dc /functions/ssh.fish
parentComment khal integration (diff)
Remove integration of kitty to ssh
Diffstat (limited to 'functions/ssh.fish')
-rw-r--r--functions/ssh.fish12
1 files changed, 0 insertions, 12 deletions
diff --git a/functions/ssh.fish b/functions/ssh.fish
deleted file mode 100644
index 4eb261a..0000000
--- a/functions/ssh.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