docs: Fix two formatting errors

sphinx *really* needs an empty line after a `::` code block starter
This commit is contained in:
Fabian Boehm 2024-01-05 16:49:49 +01:00
parent 3213883510
commit 4286b049ca
2 changed files with 2 additions and 0 deletions

View File

@ -219,6 +219,7 @@ This release of fish contains a number of fixes for problems identified in fish
Notable improvements and fixes Notable improvements and fixes
------------------------------ ------------------------------
- ``abbr --erase`` now also erases the universal variables used by the old abbr function. That means:: - ``abbr --erase`` now also erases the universal variables used by the old abbr function. That means::
abbr --erase (abbr --list) abbr --erase (abbr --list)
can now be used to clean out all old abbreviations (:issue:`9468`). can now be used to clean out all old abbreviations (:issue:`9468`).

View File

@ -135,6 +135,7 @@ which gives the current *process* (what is being completed), tokenized into sepa
If you are then also interested in the in-progress token, add If you are then also interested in the in-progress token, add
:: ::
set -l current (commandline -ct) set -l current (commandline -ct)
Note that this makes it easy to render fish's infix matching moot - if possible it's best if the completions just print all possibilities and leave the matching to the current token up to fish's logic. Note that this makes it easy to render fish's infix matching moot - if possible it's best if the completions just print all possibilities and leave the matching to the current token up to fish's logic.