From 3ddea426603c7c2543d93000d1c5e722cc2fb9c7 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Wed, 13 Apr 2022 22:45:36 +0530 Subject: [PATCH] ... --- shell-integration/bash/kitty.bash | 2 +- .../fish/vendor_conf.d/kitty-shell-integration.fish | 2 +- shell-integration/zsh/kitty-integration | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/shell-integration/bash/kitty.bash b/shell-integration/bash/kitty.bash index a086b48c9..8df7ebc33 100644 --- a/shell-integration/bash/kitty.bash +++ b/shell-integration/bash/kitty.bash @@ -278,7 +278,7 @@ clone-in-kitty() { case "$1" in "") break;; -h|--help) - builtin printf "%s\n" "Clone the current bash session into a new kitty window. For usage instructions see: https://sw.kovidgoyal.net/kitty/shell-integration/#clone-shell" + builtin printf "%s\n\n%s\n" "Clone the current bash session into a new kitty window." "For usage instructions see: https://sw.kovidgoyal.net/kitty/shell-integration/#clone-shell" return ;; *) data="$data,a=$(builtin printf "%s" "$1" | builtin command base64)";; diff --git a/shell-integration/fish/vendor_conf.d/kitty-shell-integration.fish b/shell-integration/fish/vendor_conf.d/kitty-shell-integration.fish index 3b7a9df4e..0a8de96e6 100644 --- a/shell-integration/fish/vendor_conf.d/kitty-shell-integration.fish +++ b/shell-integration/fish/vendor_conf.d/kitty-shell-integration.fish @@ -115,7 +115,7 @@ function clone-in-kitty -d "Clone the current fish session into a new kitty wind set --function data "pid=$fish_pid,cwd=$data,env=$env" for a in $argv if builtin test "$a" = -h -o "$a" = --help - builtin printf "%s\n" "Clone the current fish session into a new kitty window. For usage instructions see: https://sw.kovidgoyal.net/kitty/shell-integration/#clone-shell" + builtin printf "%s\n\n%s\n" "Clone the current fish session into a new kitty window." "For usage instructions see: https://sw.kovidgoyal.net/kitty/shell-integration/#clone-shell" return end set --local ea (builtin printf "%s" "$a" | command base64) diff --git a/shell-integration/zsh/kitty-integration b/shell-integration/zsh/kitty-integration index 28c5fa02c..29dc0b25a 100644 --- a/shell-integration/zsh/kitty-integration +++ b/shell-integration/zsh/kitty-integration @@ -361,7 +361,7 @@ clone-in-kitty() { case "$1" in "") break;; -h|--help) - builtin printf "%s\n" "Clone the current zsh session into a new kitty window. For usage instructions see: https://sw.kovidgoyal.net/kitty/shell-integration/#clone-shell" + builtin printf "%s\n\n%s\n" "Clone the current zsh session into a new kitty window." "For usage instructions see: https://sw.kovidgoyal.net/kitty/shell-integration/#clone-shell" return ;; *) data="$data,a=$(builtin printf "%s" "$1" | builtin command base64)";;