diff options
author | Christian Duerr <contact@christianduerr.com> | 2023-07-20 15:27:31 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-20 13:27:31 +0000 |
commit | bf671412cef2e99d0c2ee3d0350dc4576fb63725 (patch) | |
tree | da0a7ad575f73e41d85e43fd9440f5b2082fe71e /extra | |
parent | 044d9226016a70ed825a2d1e928b580de3f967b7 (diff) | |
download | alacritty-bf671412cef2e99d0c2ee3d0350dc4576fb63725.tar.gz alacritty-bf671412cef2e99d0c2ee3d0350dc4576fb63725.zip |
Fix manpage docs for shell section
Closes #7087.
Co-authored-by: Kirill Chibisov <contact@kchibisov.com>
Diffstat (limited to 'extra')
-rw-r--r-- | extra/man/alacritty.5.scd | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/extra/man/alacritty.5.scd b/extra/man/alacritty.5.scd index 27e162c2..5d9dde3f 100644 --- a/extra/man/alacritty.5.scd +++ b/extra/man/alacritty.5.scd @@ -24,6 +24,15 @@ This section documents the root level of the configuration file. All imports must either be absolute paths starting with _/_, or paths relative to the user's home directory starting with _~/_. +*shell* <string> | { program = <string>, args = [<string>,] } + + You can set _shell.program_ to the path of your favorite shell, e.g. + _/bin/zsh_. Entries in _shell.args_ are passed as arguments to the shell. + + Default: + Linux/BSD/macOS: _$SHELL_ or the user's login shell, if _$SHELL_ is unset++ +Windows: _"powershell"_ + *working_directory* <string> | "None" Directory the shell is started in. When this is unset, or _None_, the @@ -525,15 +534,6 @@ This section documents the *[cursor]* table of the configuration file. Default: _0.15_ -*shell* <string> | { program = <string>, args = [<string>,] } - - You can set _shell.program_ to the path of your favorite shell, e.g. - _/bin/zsh_. Entries in _shell.args_ are passed as arguments to the shell. - - Default: - Linux/BSD/macOS: _$SHELL_ or the user's login shell, if _$SHELL_ is unset++ -Windows: _"powershell"_ - # Mouse This section documents the *[mouse]* table of the configuration file. |