Fix some more warnings

This commit is contained in:
Kovid Goyal 2021-06-07 17:30:13 +05:30
parent c1049734e6
commit ec1303a232
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C
2 changed files with 4 additions and 4 deletions

View File

@ -875,7 +875,7 @@ To update |kitty|, :doc:`follow the instructions <binary>`.
- macOS: Add a :code:`titlebar-only` setting to
:opt:`hide_window_decorations` to only hide the title bar (:pull:`2286`)
- Fix a segfault when using :option:`kitty --debug-config` with maps (:iss:`2270`)
- Fix a segfault when using ``--debug-config`` with maps (:iss:`2270`)
- ``goto_tab`` now maps numbers larger than the last tab to the last tab
(:iss:`2291`)
@ -1751,8 +1751,8 @@ To update |kitty|, :doc:`follow the instructions <binary>`.
- Support "-T" as an alias for "--title" (:pull:`659`)
- Fix a regression in the previous release that broke using :option:`kitty
--debug-config` with custom key mappings (:iss:`695`)
- Fix a regression in the previous release that broke using
``--debug-config`` with custom key mappings (:iss:`695`)
0.11.1 [2018-06-17]

View File

@ -3300,7 +3300,7 @@ screen, for example, for ZSH add the following to :file:`~/.zshrc`:
.. code-block:: sh
scroll-and-clear-screen() {
printf '\n%.0s' {1..$LINES}
printf '\\n%.0s' {1..$LINES}
zle clear-screen
}
zle -N scroll-and-clear-screen