summaryrefslogtreecommitdiffstats
path: root/src/util
diff options
context:
space:
mode:
authorJiayi Zhao <jeff.no.zhao@gmail.com>2020-02-11 15:53:19 -0500
committerJiayi Zhao <jeff.no.zhao@gmail.com>2020-02-11 15:53:19 -0500
commit6042557a5e88601cb37b6067a5fdb547f6aca232 (patch)
tree5c75a81601d541dc9b74780cb8b94ec2cfb5b2fe /src/util
parentdaf9d7b9afec8c598c0974c5d92263c3af5facf0 (diff)
more progress on tui-rs work
Diffstat (limited to 'src/util')
-rw-r--r--src/util/key_mapping.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/util/key_mapping.rs b/src/util/key_mapping.rs
index fa69e92..c35fb50 100644
--- a/src/util/key_mapping.rs
+++ b/src/util/key_mapping.rs
@@ -18,7 +18,6 @@ pub fn str_to_key(s: &str) -> Option<Key> {
"delete" => Some(Key::Delete),
"insert" => Some(Key::Insert),
"escape" => Some(Key::Esc),
- "tab" => Some(Key::BackTab),
"f1" => Some(Key::F(1)),
"f2" => Some(Key::F(2)),
"f3" => Some(Key::F(3)),