Update docs

This commit is contained in:
Florian Bruhin 2019-07-09 11:44:37 +02:00
parent 07f0eac999
commit 50f530c449
3 changed files with 6 additions and 1 deletions

View File

@ -43,6 +43,7 @@ Added
- New `delete` target for `:hint` which removes the hinted element from
the DOM.
- Support for notifications (shown via system tray) with Qt 5.13.
- New `--config-py` commandline argument to use a custom `config.py` file.
Changed
~~~~~~~

View File

@ -41,6 +41,9 @@ show it.
*-B* 'BASEDIR', *--basedir* 'BASEDIR'::
Base directory for all storage.
*-C* 'CONFIG', *--config-py* 'CONFIG'::
Path to config.py.
*-V*, *--version*::
Show version and quit.

View File

@ -62,7 +62,8 @@ def get_argparser():
description=qutebrowser.__description__)
parser.add_argument('-B', '--basedir', help="Base directory for all "
"storage.")
parser.add_argument('-C', '--config-py', help="Path to config.py.")
parser.add_argument('-C', '--config-py', help="Path to config.py.",
metavar='CONFIG')
parser.add_argument('-V', '--version', help="Show version and quit.",
action='store_true')
parser.add_argument('-s', '--set', help="Set a temporary setting for "