chore(docs): regenerate man page, HTML docs, and wiki

This commit is contained in:
Gitea Actions
2026-06-19 05:58:55 +00:00
parent 1433844c2b
commit 83abb5b6c6
7 changed files with 92 additions and 11 deletions
+30 -3
View File
@@ -208,7 +208,8 @@ WAKATIME_HOME $XDG_CONFIG_HOME/wakatime
.nf .nf
\f[C] \f[C]
EDITOR nvim (falls back to vi if nvim is absent) EDITOR nvim (falls back to vi if nvim is absent)
VISUAL same as EDITOR VISUAL unset by default; set a GUI editor via local.fish (the edit
function falls back to a GUI chain when VISUAL is empty)
SUDO_EDITOR same as EDITOR SUDO_EDITOR same as EDITOR
PAGER ov (falls back to less) PAGER ov (falls back to less)
\f[R] \f[R]
@@ -901,10 +902,35 @@ clonet https://github.com/user/repo.git
.IP .IP
.nf .nf
\f[C] \f[C]
Synopsis: edit [args...] Synopsis: edit [-V|-t] [-e EDITOR] [-c] [-x TEXT] [-n] [-v|-s] [FILE...]
Opens files in nvim. Falls back to $EDITOR, nano, vi.
Opens files in a text editor, choosing a terminal or GUI editor and
resolving a rich chain of fallbacks. With no --visual/--terminal flag the
mode is auto-detected: interactive terminals use the terminal editor
($EDITOR), while detached invocations (e.g. desktop shortcuts) use the GUI
editor ($VISUAL). Clipboard contents and literal strings can be opened as
throwaway temp files. Editor output is suppressed unless --verbose.
GUI fallback chain: zed → antigravity-ide → code → kate → kwrite →
gnome-text-editor → gedit
Terminal fallback chain: nvim → vim → micro → nano → vi
Options:
-V, --visual Force the GUI editor ($VISUAL or fallbacks)
-t, --terminal Force the terminal editor ($EDITOR or fallbacks)
-e, --editor=X Use a specific editor binary X
-c, --clipboard Open the clipboard contents (as a temp file)
-x, --text=STR Open STR as the contents of a new temp file
-n, --new Force a new window/instance (best-effort)
-v, --verbose Print the launch command and editor output
-s, --silent Suppress all output, including the editor\[aq]s
-h, --help Show this help message
edit \[ti]/.config/fish/config.fish edit \[ti]/.config/fish/config.fish
edit --visual notes.txt
edit --terminal --new todo.md
edit --editor=code --clipboard
edit --text=\[dq]hello world\[dq]
\f[R] \f[R]
.fi .fi
.SS fc .SS fc
@@ -2055,6 +2081,7 @@ grep/fgrep/egrep forced --color=auto system grep variants
dir / vdir forced --color=auto system dir / vdir dir / vdir forced --color=auto system dir / vdir
help config intercepts \[dq]help config\[dq] → config-help fish builtin help help config intercepts \[dq]help config\[dq] → config-help fish builtin help
claude auto-links AGENTS.md as CLAUDE.md before launch command claude claude auto-links AGENTS.md as CLAUDE.md before launch command claude
edit multi-editor launcher (GUI/term + fallbacks) $EDITOR/nvim/nano/vi
\f[R] \f[R]
.fi .fi
.PP .PP
+2 -1
View File
@@ -621,7 +621,8 @@ wget forced --continue (resume downloads) system wget
grep/fgrep/egrep forced --color=auto system grep variants grep/fgrep/egrep forced --color=auto system grep variants
dir / vdir forced --color=auto system dir / vdir dir / vdir forced --color=auto system dir / vdir
help config intercepts "help config" → config-help fish builtin help help config intercepts "help config" → config-help fish builtin help
claude auto-links AGENTS.md as CLAUDE.md before launch command claude</code></pre> claude auto-links AGENTS.md as CLAUDE.md before launch command claude
edit multi-editor launcher (GUI/term + fallbacks) $EDITOR/nvim/nano/vi</code></pre>
<p>When C1 is disabled, <code>rm</code> uses bare <p>When C1 is disabled, <code>rm</code> uses bare
<code>command rm</code> with no wrapper — files are permanently deleted, <code>command rm</code> with no wrapper — files are permanently deleted,
not trashed. There is no intermediate safety net.</p> not trashed. There is no intermediate safety net.</p>
+2 -1
View File
@@ -511,7 +511,8 @@ GNUPGHOME $XDG_CONFIG_HOME/gnupg
WAKATIME_HOME $XDG_CONFIG_HOME/wakatime</code></pre> WAKATIME_HOME $XDG_CONFIG_HOME/wakatime</code></pre>
<h2 data-number="5.3" id="editor-and-pager">Editor and Pager</h2> <h2 data-number="5.3" id="editor-and-pager">Editor and Pager</h2>
<pre><code>EDITOR nvim (falls back to vi if nvim is absent) <pre><code>EDITOR nvim (falls back to vi if nvim is absent)
VISUAL same as EDITOR VISUAL unset by default; set a GUI editor via local.fish (the edit
function falls back to a GUI chain when VISUAL is empty)
SUDO_EDITOR same as EDITOR SUDO_EDITOR same as EDITOR
PAGER ov (falls back to less)</code></pre> PAGER ov (falls back to less)</code></pre>
<h2 data-number="5.4" id="scrollback-history">Scrollback History</h2> <h2 data-number="5.4" id="scrollback-history">Scrollback History</h2>
+28 -3
View File
@@ -632,10 +632,35 @@ clonet https://github.com/user/repo.git</code></pre>
<h2 data-number="9.3" id="53-editors-and-viewers">5.3 Editors and <h2 data-number="9.3" id="53-editors-and-viewers">5.3 Editors and
Viewers</h2> Viewers</h2>
<h3 data-number="9.3.1" id="edit">edit</h3> <h3 data-number="9.3.1" id="edit">edit</h3>
<pre><code>Synopsis: edit [args...] <pre><code>Synopsis: edit [-V|-t] [-e EDITOR] [-c] [-x TEXT] [-n] [-v|-s] [FILE...]
Opens files in nvim. Falls back to $EDITOR, nano, vi.
edit ~/.config/fish/config.fish</code></pre> Opens files in a text editor, choosing a terminal or GUI editor and
resolving a rich chain of fallbacks. With no --visual/--terminal flag the
mode is auto-detected: interactive terminals use the terminal editor
($EDITOR), while detached invocations (e.g. desktop shortcuts) use the GUI
editor ($VISUAL). Clipboard contents and literal strings can be opened as
throwaway temp files. Editor output is suppressed unless --verbose.
GUI fallback chain: zed → antigravity-ide → code → kate → kwrite →
gnome-text-editor → gedit
Terminal fallback chain: nvim → vim → micro → nano → vi
Options:
-V, --visual Force the GUI editor ($VISUAL or fallbacks)
-t, --terminal Force the terminal editor ($EDITOR or fallbacks)
-e, --editor=X Use a specific editor binary X
-c, --clipboard Open the clipboard contents (as a temp file)
-x, --text=STR Open STR as the contents of a new temp file
-n, --new Force a new window/instance (best-effort)
-v, --verbose Print the launch command and editor output
-s, --silent Suppress all output, including the editor&#39;s
-h, --help Show this help message
edit ~/.config/fish/config.fish
edit --visual notes.txt
edit --terminal --new todo.md
edit --editor=code --clipboard
edit --text=&quot;hello world&quot;</code></pre>
<h3 data-number="9.3.2" id="fc">fc</h3> <h3 data-number="9.3.2" id="fc">fc</h3>
<pre><code>Synopsis: fc [command_prefix] <pre><code>Synopsis: fc [command_prefix]
Edit the last shell command (or one matching a prefix) in $EDITOR, Edit the last shell command (or one matching a prefix) in $EDITOR,
+2 -1
View File
@@ -29,7 +29,8 @@ Tools that respect XDG are directed to these paths rather than polluting $HOME.
## Editor and Pager ## Editor and Pager
EDITOR nvim (falls back to vi if nvim is absent) EDITOR nvim (falls back to vi if nvim is absent)
VISUAL same as EDITOR VISUAL unset by default; set a GUI editor via local.fish (the edit
function falls back to a GUI chain when VISUAL is empty)
SUDO_EDITOR same as EDITOR SUDO_EDITOR same as EDITOR
PAGER ov (falls back to less) PAGER ov (falls back to less)
+27 -2
View File
@@ -192,10 +192,35 @@
### edit ### edit
Synopsis: edit [args...] Synopsis: edit [-V|-t] [-e EDITOR] [-c] [-x TEXT] [-n] [-v|-s] [FILE...]
Opens files in nvim. Falls back to $EDITOR, nano, vi.
Opens files in a text editor, choosing a terminal or GUI editor and
resolving a rich chain of fallbacks. With no --visual/--terminal flag the
mode is auto-detected: interactive terminals use the terminal editor
($EDITOR), while detached invocations (e.g. desktop shortcuts) use the GUI
editor ($VISUAL). Clipboard contents and literal strings can be opened as
throwaway temp files. Editor output is suppressed unless --verbose.
GUI fallback chain: zed → antigravity-ide → code → kate → kwrite →
gnome-text-editor → gedit
Terminal fallback chain: nvim → vim → micro → nano → vi
Options:
-V, --visual Force the GUI editor ($VISUAL or fallbacks)
-t, --terminal Force the terminal editor ($EDITOR or fallbacks)
-e, --editor=X Use a specific editor binary X
-c, --clipboard Open the clipboard contents (as a temp file)
-x, --text=STR Open STR as the contents of a new temp file
-n, --new Force a new window/instance (best-effort)
-v, --verbose Print the launch command and editor output
-s, --silent Suppress all output, including the editor's
-h, --help Show this help message
edit ~/.config/fish/config.fish edit ~/.config/fish/config.fish
edit --visual notes.txt
edit --terminal --new todo.md
edit --editor=code --clipboard
edit --text="hello world"
### fc ### fc
+1
View File
@@ -149,6 +149,7 @@ all of these commands.
dir / vdir forced --color=auto system dir / vdir dir / vdir forced --color=auto system dir / vdir
help config intercepts "help config" → config-help fish builtin help help config intercepts "help config" → config-help fish builtin help
claude auto-links AGENTS.md as CLAUDE.md before launch command claude claude auto-links AGENTS.md as CLAUDE.md before launch command claude
edit multi-editor launcher (GUI/term + fallbacks) $EDITOR/nvim/nano/vi
When C1 is disabled, `rm` uses bare `command rm` with no wrapper — files When C1 is disabled, `rm` uses bare `command rm` with no wrapper — files
are permanently deleted, not trashed. There is no intermediate safety net. are permanently deleted, not trashed. There is no intermediate safety net.