Skip to content

Commit

Permalink
Fix remote control command docs order randomized
Browse files Browse the repository at this point in the history
  • Loading branch information
kovidgoyal committed Jun 20, 2020
1 parent b15e586 commit be3c76d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit be3c76d

Please sign in to comment.