mirror of
https://github.com/fish-shell/fish-shell
synced 2025-01-13 21:44:16 +00:00
docs: Fix two formatting errors
sphinx *really* needs an empty line after a `::` code block starter
This commit is contained in:
parent
3213883510
commit
4286b049ca
2 changed files with 2 additions and 0 deletions
|
@ -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`).
|
||||||
|
|
|
@ -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.
|
||||||
|
|
Loading…
Reference in a new issue