diff options
Diffstat (limited to 'doc/ranger.pod')
-rw-r--r-- | doc/ranger.pod | 59 |
1 files changed, 31 insertions, 28 deletions
diff --git a/doc/ranger.pod b/doc/ranger.pod index a61ae657..46976b4a 100644 --- a/doc/ranger.pod +++ b/doc/ranger.pod @@ -928,7 +928,7 @@ ranger. For your convenience, this is a list of the "public" commands including flat level grep pattern help - jump_non [-r] [-w] + jump_non [-FLAGS...] linemode linemodename load_copy_buffer map key command @@ -943,16 +943,16 @@ ranger. For your convenience, this is a list of the "public" commands including quit quit! relink newpath - rename_append + rename_append [-FLAGS...] rename newname save_copy_buffer - scout [-FLAGS] pattern + scout [-FLAGS...] pattern search pattern search_inc pattern set option value setintag tags option value setlocal [path=<path>] option value - shell [-FLAGS] command + shell [-FLAGS...] command source filename terminal tmap key command @@ -1119,14 +1119,14 @@ Looks for a string in all marked files or directories. Provides a quick way to view ranger documentations. -=item jump_non [I<-r>] [I<-w>] +=item jump_non [-I<flags>...] Jumps to first non-directory if highlighted file is a directory and vice versa. +Flags: -r Jump in reverse order -w Wrap around if reaching end of filelist - =item linemode I<linemodename> Sets the linemode of all files in the current directory. The linemode may be: @@ -1220,16 +1220,20 @@ it by typing `` or '' the next time you start ranger. Change the link destination of the current symlink file to <newpath>. First <tab> will load the original link. -=item rename_append - -Opens the console with ":rename <current file>" with the cursor automatically -placed before the file extension - =item rename I<newname> Rename the current file. If a file with that name already exists, the renaming will fail. Also try the key binding A for appending something to a file name. +=item rename_append [-I<flags>...] + +Opens the console with ":rename <current file>" with the cursor positioned +before the file extension. + +Flags: + -a Position before all extensions + -r Remove everything before extensions + =item save_copy_buffer Save the copy buffer to I<~/.config/ranger/copy_buffer>. This can be used to @@ -1238,23 +1242,22 @@ pass the list of copied files to another ranger instance. =item scout [-I<flags>...] [--] I<pattern> Swiss army knife command for searching, traveling and filtering files. -The command takes various flags as arguments which can be used to -influence its behaviour: - - -a = automatically open a file on unambiguous match - -e = open the selected file when pressing enter - -f = filter files that match the current search pattern - -g = interpret pattern as a glob pattern - -i = ignore the letter case of the files - -k = keep the console open when changing a directory with the command - -l = letter skipping; e.g. allow "rdme" to match the file "readme" - -m = mark the matching files after pressing enter - -M = unmark the matching files after pressing enter - -p = permanent filter: hide non-matching files after pressing enter - -r = interpret pattern as a regular expression pattern - -s = smart case; like -i unless pattern contains upper case letters - -t = apply filter and search pattern as you type - -v = inverts the match + +Flags: + -a Automatically open a file on unambiguous match + -e Open the selected file when pressing enter + -f Filter files that match the current search pattern + -g Interpret pattern as a glob pattern + -i Ignore the letter case of the files + -k Keep the console open when changing a directory with the command + -l Letter skipping; e.g. allow "rdme" to match the file "readme" + -m Mark the matching files after pressing enter + -M Unmark the matching files after pressing enter + -p Permanent filter: hide non-matching files after pressing enter + -r Interpret pattern as a regular expression pattern + -s Smart case; like -i unless pattern contains upper case letters + -t Apply filter and search pattern as you type + -v Inverts the match Multiple flags can be combined. For example, ":scout -gpt" would create a :filter-like command using globbing. |