This commit is contained in:
Kovid Goyal 2019-07-15 09:44:20 +05:30
commit b7a11035d5
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -450,6 +450,14 @@ Add the following to your :file:`~/.bashrc`
source <(kitty + complete setup bash)
Older versions of bash (for example, v3.2) do not support
process substitution with the source command, in which
case you can try an alternative:
.. code-block:: sh
source /dev/stdin <<<"$(kitty + complete setup bash)"
zsh
~~~~~~~~~