escape string interpolations in kitty conf
This commit is contained in:
parent
26220615e2
commit
e8d1f0d66e
1 changed files with 2 additions and 2 deletions
|
@ -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/<path to home directory>/b. Using
|
||||
#: VAR= will set it to the empty string and using just VAR will delete
|
||||
|
|
Loading…
Reference in a new issue