If the line in the nvim buffer looks like, for example,
s = "a \"quoted thing\" inside a quote"
then, upon sending it to the runner with the KittySendLines command, I see
s = "a "quoted thing" inside a quote"
in the runner.
In other words, the backslash escape character has been interpreted when I would like it to be copied literally. The same behavior occurs with other escaped characters such as \r and \t: newlines and tabs appear instead of what was literally in the nvim buffer. Is there a setting or some way of avoiding this?
If the line in the nvim buffer looks like, for example,
s = "a \"quoted thing\" inside a quote"then, upon sending it to the runner with the KittySendLines command, I see
s = "a "quoted thing" inside a quote"in the runner.
In other words, the backslash escape character has been interpreted when I would like it to be copied literally. The same behavior occurs with other escaped characters such as
\rand\t: newlines and tabs appear instead of what was literally in the nvim buffer. Is there a setting or some way of avoiding this?