summaryrefslogtreecommitdiff
path: root/alot/settings.py
diff options
context:
space:
mode:
authorpazz <patricktotzke@gmail.com>2011-07-17 18:11:31 +0100
committerpazz <patricktotzke@gmail.com>2011-07-17 18:11:31 +0100
commita6cbde6c6154f50b701612569d073cbab86bd7cf (patch)
treef186a0a0ff592a134da1f8d23e28619b3636bfb9 /alot/settings.py
parentbfc131406b99edf35dfefe6036dcc1c732adc53a (diff)
vim-like single word commands: issue #51
Diffstat (limited to 'alot/settings.py')
-rw-r--r--alot/settings.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/alot/settings.py b/alot/settings.py
index a0e7a8eb..3daace9e 100644
--- a/alot/settings.py
+++ b/alot/settings.py
@@ -310,16 +310,16 @@ MAPPING = {
'@': ('refresh', ''),
'I': ('search tag:inbox AND NOT tag:killed', 'open Inbox'),
'U': ('search tag:unread', 'open unread'),
- 'x': ('buffer close', 'close buffer'),
- 'tab': ('buffer next', 'next buffer'),
- 'shift tab': ('buffer prev', 'previous buffer'),
+ 'x': ('close', 'close buffer'),
+ 'tab': ('bnext', 'next buffer'),
+ 'shift tab': ('bprevious', 'previous buffer'),
'\\': ('prompt search ', ''),
'q': ('exit', ''),
';': ('bufferlist', ''),
':': ('prompt', ''),
'L': ('taglist', ''),
's': ('shell', ''),
- '@': ('buffer refresh', ''),
+ '@': ('refresh', 'refresh current buffer'),
'm': ('compose', ''),
},
'search': {
@@ -340,8 +340,8 @@ MAPPING = {
'y': ('send', ''),
},
'bufferlist': {
- 'd': ('buffer close focussed', ''),
- 'enter': ('buffer focus', ''),
+ 'd': ('closefocussed', ''),
+ 'enter': ('bufferfocus', ''),
}
}