diff options
author | Samuel Walladge <samuel@swalladge.net> | 2019-10-07 15:18:06 +1030 |
---|---|---|
committer | Samuel Walladge <samuel@swalladge.net> | 2019-10-07 15:18:06 +1030 |
commit | 08a04cea36aa691611588f0923e325029dc0f66b (patch) | |
tree | e44a6ca1bb1de930e04750a494dd58f88faaeb5c | |
parent | 7338801c355e72354ec73beee798c21c46757b03 (diff) | |
download | ranger-08a04cea36aa691611588f0923e325029dc0f66b.tar.gz |
add wl-clipboard support
-rwxr-xr-x | ranger/config/commands.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/ranger/config/commands.py b/ranger/config/commands.py index b146cec9..cb6fa132 100755 --- a/ranger/config/commands.py +++ b/ranger/config/commands.py @@ -1924,11 +1924,14 @@ class yank(Command): ['xsel'], ['xsel', '-b'], ], + 'wl-copy': [ + ['wl-copy'], + ], 'pbcopy': [ ['pbcopy'], ], } - ordered_managers = ['pbcopy', 'xclip', 'xsel'] + ordered_managers = ['pbcopy', 'wl-copy', 'xclip', 'xsel'] executables = get_executables() for manager in ordered_managers: if manager in executables: |