diff options
author | Maxime “pep” Buquet <pep@bouah.net> | 2017-09-11 16:36:04 +0100 |
---|---|---|
committer | mathieui <mathieui@mathieui.net> | 2017-09-11 17:41:31 +0200 |
commit | c88459c507c66dc31df0533ad12b4343d05a4391 (patch) | |
tree | 145078995131046ecdb7f0119b22b2813a2a8756 | |
parent | ae45666ff9536c0ce901985331fa1036a2dd4213 (diff) | |
download | poezio-c88459c507c66dc31df0533ad12b4343d05a4391.tar.gz poezio-c88459c507c66dc31df0533ad12b4343d05a4391.tar.bz2 poezio-c88459c507c66dc31df0533ad12b4343d05a4391.tar.xz poezio-c88459c507c66dc31df0533ad12b4343d05a4391.zip |
Add a no-op command
-rw-r--r-- | poezio/core/core.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/poezio/core/core.py b/poezio/core/core.py index be257c40..410ac83b 100644 --- a/poezio/core/core.py +++ b/poezio/core/core.py @@ -165,6 +165,7 @@ class Core(object): 'M-C': self.scroll_info_down, 'M-k': self.escape_next_key, ######## actions mappings ########## + '_noop': lambda *args, **kwargs: None, '_bookmark': self.command.bookmark, '_bookmark_local': self.command.bookmark_local, '_close_tab': self.close_tab, |