Fix remote control command docs order randomized
This commit is contained in:
parent
b15e58621c
commit
be3c76da20
1 changed files with 1 additions and 1 deletions
|
|
@ -275,7 +275,7 @@ def write_cli_docs(all_kitten_names: Iterable[str]) -> None:
|
|||
p('\n\n' + as_rst(
|
||||
global_options_spec, message=cli_msg, usage='command ...', appname='kitty @'))
|
||||
from kitty.rc.base import cli_params_for
|
||||
for cmd_name in all_command_names():
|
||||
for cmd_name in sorted(all_command_names()):
|
||||
func = command_for_name(cmd_name)
|
||||
p(f'.. _at_{func.name}:\n')
|
||||
p('kitty @', func.name + '\n' + '-' * 120)
|
||||
|
|
|
|||
Loading…
Reference in a new issue