mirror of
https://github.com/extrawurst/gitui.git
synced 2024-11-26 03:00:03 +03:00
Merge branch 'master' of github.com:Extrawurst/gitui
This commit is contained in:
commit
7aebd1b666
@ -129,7 +129,8 @@ impl App {
|
||||
self.toggle_tabs(false)?;
|
||||
NeedsUpdate::COMMANDS
|
||||
}
|
||||
keys::TAB_TOGGLE_REVERSE => {
|
||||
keys::TAB_TOGGLE_REVERSE
|
||||
| keys::TAB_TOGGLE_REVERSE_WINDOWS => {
|
||||
self.toggle_tabs(true)?;
|
||||
NeedsUpdate::COMMANDS
|
||||
}
|
||||
|
@ -20,6 +20,8 @@ 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);
|
||||
pub const TAB_TOGGLE_REVERSE_WINDOWS: KeyEvent =
|
||||
with_mod(KeyCode::BackTab, KeyModifiers::SHIFT);
|
||||
pub const FOCUS_WORKDIR: KeyEvent = no_mod(KeyCode::Char('w'));
|
||||
pub const FOCUS_STAGE: KeyEvent = no_mod(KeyCode::Char('s'));
|
||||
pub const FOCUS_RIGHT: KeyEvent = no_mod(KeyCode::Right);
|
||||
|
Loading…
Reference in New Issue
Block a user