We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7aebd1b commit a2e9997Copy full SHA for a2e9997
src/keys.rs
@@ -20,6 +20,7 @@ pub const TAB_3: KeyEvent = no_mod(KeyCode::Char('3'));
20
pub const TAB_4: KeyEvent = no_mod(KeyCode::Char('4'));
21
pub const TAB_TOGGLE: KeyEvent = no_mod(KeyCode::Tab);
22
pub const TAB_TOGGLE_REVERSE: KeyEvent = no_mod(KeyCode::BackTab);
23
+//TODO: https://github.com/extrawurst/gitui/issues/112
24
pub const TAB_TOGGLE_REVERSE_WINDOWS: KeyEvent =
25
with_mod(KeyCode::BackTab, KeyModifiers::SHIFT);
26
pub const FOCUS_WORKDIR: KeyEvent = no_mod(KeyCode::Char('w'));
0 commit comments