parent
5668a5e71a
commit
ec21041516
@ -1,3 +1,7 @@
|
|||||||
|
// DO NOT EDIT THIS FILE DIRECTLY!
|
||||||
|
// It is autogenerated from docstrings by running:
|
||||||
|
// $ python3 scripts/dev/src2asciidoc.py
|
||||||
|
|
||||||
= Commands
|
= Commands
|
||||||
|
|
||||||
== Normal commands
|
== Normal commands
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
// DO NOT EDIT THIS FILE DIRECTLY!
|
||||||
|
// It is autogenerated from docstrings by running:
|
||||||
|
// $ python3 scripts/dev/src2asciidoc.py
|
||||||
|
|
||||||
= Settings
|
= Settings
|
||||||
|
|
||||||
.Quick reference for section ``general''
|
.Quick reference for section ``general''
|
||||||
|
@ -42,6 +42,13 @@ from qutebrowser.commands import cmdutils, argparser
|
|||||||
from qutebrowser.config import configdata
|
from qutebrowser.config import configdata
|
||||||
from qutebrowser.utils import docutils, usertypes
|
from qutebrowser.utils import docutils, usertypes
|
||||||
|
|
||||||
|
FILE_HEADER = """
|
||||||
|
// DO NOT EDIT THIS FILE DIRECTLY!
|
||||||
|
// It is autogenerated from docstrings by running:
|
||||||
|
// $ python3 scripts/dev/src2asciidoc.py
|
||||||
|
|
||||||
|
""".lstrip()
|
||||||
|
|
||||||
|
|
||||||
class UsageFormatter(argparse.HelpFormatter):
|
class UsageFormatter(argparse.HelpFormatter):
|
||||||
|
|
||||||
@ -312,6 +319,7 @@ def _format_action(action):
|
|||||||
def generate_commands(filename):
|
def generate_commands(filename):
|
||||||
"""Generate the complete commands section."""
|
"""Generate the complete commands section."""
|
||||||
with _open_file(filename) as f:
|
with _open_file(filename) as f:
|
||||||
|
f.write(FILE_HEADER)
|
||||||
f.write("= Commands\n")
|
f.write("= Commands\n")
|
||||||
normal_cmds = []
|
normal_cmds = []
|
||||||
hidden_cmds = []
|
hidden_cmds = []
|
||||||
@ -395,6 +403,7 @@ def _generate_setting_section(f, sectname, sect):
|
|||||||
def generate_settings(filename):
|
def generate_settings(filename):
|
||||||
"""Generate the complete settings section."""
|
"""Generate the complete settings section."""
|
||||||
with _open_file(filename) as f:
|
with _open_file(filename) as f:
|
||||||
|
f.write(FILE_HEADER)
|
||||||
f.write("= Settings\n")
|
f.write("= Settings\n")
|
||||||
f.write(_get_setting_quickref() + "\n")
|
f.write(_get_setting_quickref() + "\n")
|
||||||
for sectname, sect in configdata.DATA.items():
|
for sectname, sect in configdata.DATA.items():
|
||||||
|
Loading…
Reference in New Issue
Block a user