summaryrefslogtreecommitdiffstats
path: root/keymap.c
diff options
context:
space:
mode:
authorMichael Elkins <me@sigpipe.org>2002-11-12 09:20:30 +0000
committerMichael Elkins <me@sigpipe.org>2002-11-12 09:20:30 +0000
commit6bde5080b69e7f79e4e63ffedc4989722eda2707 (patch)
tree2f55616b639846b3fa20bb089ad41c73f7e346d7 /keymap.c
parent1502110f653f11ceb31cd04953f0312289a2659f (diff)
Tell mutt about the back-tab key (shift tab).
Diffstat (limited to 'keymap.c')
-rw-r--r--keymap.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/keymap.c b/keymap.c
index 6a4ba0d9..1c886f72 100644
--- a/keymap.c
+++ b/keymap.c
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 1996-2000 Michael R. Elkins <me@cs.hmc.edu>
+ * Copyright (C) 1996-2000,2002 Michael R. Elkins <me@cs.hmc.edu>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -78,6 +78,7 @@ static struct mapping_t KeyNames[] = {
{ "<Esc>", '\033' },
{ "<Tab>", '\t' },
{ "<Space>", ' ' },
+ { "<BackTab>", KEY_BTAB },
{ NULL, 0 }
};