diff options
author | hut <hut@hut.pm> | 2018-01-28 17:28:25 +0100 |
---|---|---|
committer | hut <hut@hut.pm> | 2018-01-28 17:28:56 +0100 |
commit | 46039fd03f0ca8ac67f5007d1ec6e8896c67f22c (patch) | |
tree | 1fde4e1157f55b368f1dc06a20e22cccdd28ae48 /ranger | |
parent | 1b9eb624d26e8303a37ed764a232c658a2448984 (diff) | |
download | ranger-46039fd03f0ca8ac67f5007d1ec6e8896c67f22c.tar.gz |
core.main: rearranged command line items
Diffstat (limited to 'ranger')
-rw-r--r-- | ranger/core/main.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ranger/core/main.py b/ranger/core/main.py index 0148e2b5..a96b24a1 100644 --- a/ranger/core/main.py +++ b/ranger/core/main.py @@ -278,10 +278,10 @@ def parse_arguments(): parser.add_option('--choosedir', type='string', metavar='PATH', help="Makes ranger act like a directory chooser. When ranger quits" ", it will write the name of the last visited directory to PATH") - parser.add_option('--show-only-dirs', action='store_true', - help="Show only directories, no files or links") parser.add_option('--selectfile', type='string', metavar='filepath', help="Open ranger with supplied file selected.") + parser.add_option('--show-only-dirs', action='store_true', + help="Show only directories, no files or links") parser.add_option('--list-unused-keys', action='store_true', help="List common keys which are not bound to any action.") parser.add_option('--list-tagged-files', type='string', default=None, |