From a2e9997bb1b10059b93bfcefb37a1a59f881d64b Mon Sep 17 00:00:00 2001 From: Stephan Dilly Date: Thu, 4 Jun 2020 18:31:47 +0200 Subject: [PATCH] note for later --- src/keys.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/keys.rs b/src/keys.rs index 7ba8aafc..2ddcfeb5 100644 --- a/src/keys.rs +++ b/src/keys.rs @@ -20,6 +20,7 @@ pub const TAB_3: KeyEvent = no_mod(KeyCode::Char('3')); pub const TAB_4: KeyEvent = no_mod(KeyCode::Char('4')); pub const TAB_TOGGLE: KeyEvent = no_mod(KeyCode::Tab); pub const TAB_TOGGLE_REVERSE: KeyEvent = no_mod(KeyCode::BackTab); +//TODO: https://github.com/extrawurst/gitui/issues/112 pub const TAB_TOGGLE_REVERSE_WINDOWS: KeyEvent = with_mod(KeyCode::BackTab, KeyModifiers::SHIFT); pub const FOCUS_WORKDIR: KeyEvent = no_mod(KeyCode::Char('w'));