Add debug commands to manpage separately

This commit is contained in:
Florian Bruhin 2014-06-26 06:35:57 +02:00
parent dd601ab9b6
commit 1c65a38254

View File

@ -166,13 +166,17 @@ def generate_commands():
print("== Commands")
normal_cmds = []
hidden_cmds = []
debug_cmds = []
for name, cmd in cmdutils.cmd_dict.items():
if cmd.hide:
hidden_cmds.append((name, cmd))
elif cmd.debug:
debug_cmds.append((name, cmd))
else:
normal_cmds.append((name, cmd))
normal_cmds.sort()
hidden_cmds.sort()
debug_cmds.sort()
print()
print("=== Normal commands")
print(".Quick reference")
@ -185,6 +189,15 @@ def generate_commands():
print(get_command_quickref(hidden_cmds))
for name, cmd in hidden_cmds:
print(get_command_doc(name, cmd))
print()
print("=== Debugging commands")
print("These commands are mainly intended for debugging. They are hidden "
"if qutebrowser was started without the `--debug`-flag.")
print()
print(".Quick reference")
print(get_command_quickref(debug_cmds))
for name, cmd in debug_cmds:
print(get_command_doc(name, cmd))
def generate_settings():