diff options
-rwxr-xr-x | ranger/config/commands.py | 46 |
1 files changed, 40 insertions, 6 deletions
diff --git a/ranger/config/commands.py b/ranger/config/commands.py index e14f0818..c034c457 100755 --- a/ranger/config/commands.py +++ b/ranger/config/commands.py @@ -1321,29 +1321,63 @@ class unmap(Command): self.fm.ui.keymaps.unbind(self.context, arg) -class cunmap(unmap): - """:cunmap <keys> [<keys2>, ...] +class uncmap(unmap): + """:uncmap <keys> [<keys2>, ...] Remove the given "console" mappings """ context = 'console' +class cunmap(uncmap): + """:cunmap <keys> [<keys2>, ...] -class punmap(unmap): - """:punmap <keys> [<keys2>, ...] + Remove the given "console" mappings + + DEPRECATED in favor of uncmap. + """ + + def execute(self): + self.fm.notify("cunmap is deprecated in favor of uncmap!") + super(cunmap, self).execute() + +class unpmap(unmap): + """:unpmap <keys> [<keys2>, ...] Remove the given "pager" mappings """ context = 'pager' +class punmap(unpmap): + """:punmap <keys> [<keys2>, ...] + + Remove the given "pager" mappings -class tunmap(unmap): - """:tunmap <keys> [<keys2>, ...] + DEPRECATED in favor of unpmap. + """ + + def execute(self): + self.fm.notify("punmap is deprecated in favor of unpmap!") + super(punmap, self).execute() + +class untmap(unmap): + """:untmap <keys> [<keys2>, ...] Remove the given "taskview" mappings """ context = 'taskview' +class tunmap(untmap): + """:tunmap <keys> [<keys2>, ...] + + Remove the given "taskview" mappings + + DEPRECATED in favor of uncmap. + """ + + def execute(self): + self.fm.notify("tunmap is deprecated in favor of untmap!") + super(tunmap, self).execute() + class map_(Command): """:map <keysequence> <command> |