diff options
-rwxr-xr-x | ranger/config/commands.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ranger/config/commands.py b/ranger/config/commands.py index 0b61b6e4..2076dea3 100755 --- a/ranger/config/commands.py +++ b/ranger/config/commands.py @@ -1933,7 +1933,7 @@ class linemode(default_linemode): class yank(Command): - """:yank [name|dir|path] + """:yank [name|dir|path|name_without_extension] Copies the file's name (default), directory or path into both the primary X selection and the clipboard. @@ -1968,7 +1968,7 @@ class yank(Command): ['pbcopy'], ], } - ordered_managers = ['pbcopy', 'wl-copy', 'xclip', 'xsel'] + ordered_managers = ['pbcopy', 'xclip', 'xsel', 'wl-copy'] executables = get_executables() for manager in ordered_managers: if manager in executables: |