Updated a few descriptions.
This commit is contained in:
@@ -33,22 +33,22 @@ def build_parser():
|
|||||||
'-V', '--version', action='version', version='rtv '+__version__)
|
'-V', '--version', action='version', version='rtv '+__version__)
|
||||||
parser.add_argument(
|
parser.add_argument(
|
||||||
'-s', dest='subreddit',
|
'-s', dest='subreddit',
|
||||||
help='name of the subreddit that will be opened on start')
|
help='Name of the subreddit that will be opened on start')
|
||||||
parser.add_argument(
|
parser.add_argument(
|
||||||
'-l', dest='link',
|
'-l', dest='link',
|
||||||
help='full URL of a submission that will be opened on start')
|
help='Full URL of a submission that will be opened on start')
|
||||||
parser.add_argument(
|
parser.add_argument(
|
||||||
'--log', metavar='FILE', action='store',
|
'--log', metavar='FILE', action='store',
|
||||||
help='log HTTP requests to the given file')
|
help='Log HTTP requests to the given file')
|
||||||
parser.add_argument(
|
parser.add_argument(
|
||||||
'--config', metavar='FILE', action='store',
|
'--config', metavar='FILE', action='store',
|
||||||
help='Load configuration settings from the given file')
|
help='Load configuration settings from the given file')
|
||||||
parser.add_argument(
|
parser.add_argument(
|
||||||
'--ascii', action='store_const', const=True,
|
'--ascii', action='store_const', const=True,
|
||||||
help='enable ascii-only mode')
|
help='Enable ascii-only mode')
|
||||||
parser.add_argument(
|
parser.add_argument(
|
||||||
'--monochrome', action='store_const', const=True,
|
'--monochrome', action='store_const', const=True,
|
||||||
help='enable monochrome mode and force text to black & white')
|
help='Disable color')
|
||||||
parser.add_argument(
|
parser.add_argument(
|
||||||
'--non-persistent', dest='persistent', action='store_const',
|
'--non-persistent', dest='persistent', action='store_const',
|
||||||
const=False,
|
const=False,
|
||||||
|
|||||||
@@ -13,7 +13,7 @@
|
|||||||
; This may be necessary for compatibility with some terminal browsers.
|
; This may be necessary for compatibility with some terminal browsers.
|
||||||
ascii = False
|
ascii = False
|
||||||
|
|
||||||
; Turn on monochrome mode to force text to black and white.
|
; Turn on monochrome mode to disable color.
|
||||||
monochrome = False
|
monochrome = False
|
||||||
|
|
||||||
; Enable debugging by logging all HTTP requests and errors to the given file.
|
; Enable debugging by logging all HTTP requests and errors to the given file.
|
||||||
|
|||||||
Reference in New Issue
Block a user