From e8d1f0d66ef7349d070c48643e3f5c1d1c135b9d Mon Sep 17 00:00:00 2001 From: mehbark Date: Mon, 14 Aug 2023 09:25:06 -0400 Subject: [PATCH] escape string interpolations in kitty conf --- kitty.conf.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kitty.conf.nix b/kitty.conf.nix index a6c0cfb..7dc96a2 100644 --- a/kitty.conf.nix +++ b/kitty.conf.nix @@ -1159,7 +1159,7 @@ editor nvim #: control connections. Note that this will apply to all kitty #: instances. It can be overridden by the kitty --listen-on command #: line flag. This option accepts only UNIX sockets, such as -#: unix:${TEMP}/mykitty or (on Linux) unix:@mykitty. Environment +#: unix:$${TEMP}/mykitty or (on Linux) unix:@mykitty. Environment #: variables are expanded. If {kitty_pid} is present then it is #: replaced by the PID of the kitty process, otherwise the PID of the #: kitty process is appended to the value, with a hyphen. This option @@ -1175,7 +1175,7 @@ editor nvim #: use:: #: env MYVAR1=a -#: env MYVAR2=${MYVAR1}/${HOME}/b +#: env MYVAR2=$${MYVAR1}/$${HOME}/b #: The value of MYVAR2 will be a//b. Using #: VAR= will set it to the empty string and using just VAR will delete