From cde489c55eb6eeaf20bddfc3f9f250cc30426f4e Mon Sep 17 00:00:00 2001 From: ache Date: Fri, 9 Aug 2024 04:27:04 +0200 Subject: Use kitten katty ssh wrapper when possible --- functions/ssh.fish | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 functions/ssh.fish (limited to 'functions') diff --git a/functions/ssh.fish b/functions/ssh.fish new file mode 100644 index 0000000..4eb261a --- /dev/null +++ b/functions/ssh.fish @@ -0,0 +1,12 @@ +# 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.2.3-70-g09d2