Fix typo in bash integration script caught by the test

This commit is contained in:
Kovid Goyal 2024-05-09 12:39:03 +05:30
parent eb1d418358
commit 4f26bada31
No known key found for this signature in database
GPG key ID: 06BC317B515ACE7C
2 changed files with 19 additions and 14 deletions

View file

@ -464,4 +464,7 @@ kitty also optionally supports sending the cmdline going to be executed with ``<
Here, *encoded by %q* means the encoding produced by the %q format to printf in
bash and similar shells.
bash and similar shells. Which is basically shell escaping with the addition of
using `ANSI C quoting
<https://www.gnu.org/software/bash/manual/html_node/ANSI_002dC-Quoting.html#ANSI_002dC-Quoting>`__
for control characters (``$''`` quoting).