diff options
author | toonn <toonn@toonn.io> | 2019-10-02 00:10:33 +0200 |
---|---|---|
committer | toonn <toonn@toonn.io> | 2019-10-02 21:01:47 +0200 |
commit | d674b457082ac878e525e63549ad0d7500bcb0b3 (patch) | |
tree | 9364a1cd450ec82a00126d44ceb24e9e8ce6f642 /ranger | |
parent | 23440660291c236eb374e2d72406c1f35f026289 (diff) | |
download | ranger-d674b457082ac878e525e63549ad0d7500bcb0b3.tar.gz |
Fix cunmap
`cunmap` was broken and nobody noticed. It unmapped bindings in the `browser` context, so it was basically an alias for `unmap`.
Diffstat (limited to 'ranger')
-rwxr-xr-x | ranger/config/commands.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ranger/config/commands.py b/ranger/config/commands.py index 404a1edb..e14f0818 100755 --- a/ranger/config/commands.py +++ b/ranger/config/commands.py @@ -1326,7 +1326,7 @@ class cunmap(unmap): Remove the given "console" mappings """ - context = 'browser' + context = 'console' class punmap(unmap): |