mirror of
https://github.com/gitui-org/gitui
synced 2026-05-23 00:48:35 +00:00
vim style config: allow Q in pop-up inputs (#818)
Change `exit` (which exits the app regardless of context) to <kbd>Ctrl</kbd>+<kbd>C</kbd> (which doesn’t cause quitting on upper-case `Q` insert in popup inputs, cf. #771).
This commit is contained in:
parent
8f12010aa8
commit
36e9f7754b
1 changed files with 2 additions and 2 deletions
|
|
@ -26,8 +26,8 @@
|
|||
|
||||
open_help: ( code: F(1), modifiers: ( bits: 0,),),
|
||||
|
||||
exit: ( code: Char('Q'), modifiers: ( bits: 1,),),
|
||||
quit: ( code: Char('q'), modifiers: ( bits: 0,),),
|
||||
exit: ( code: Char('c'), modifiers: ( bits: 2,),),
|
||||
quit: ( code: Char('q'), modifiers: ( bits: 0,),),
|
||||
exit_popup: ( code: Esc, modifiers: ( bits: 0,),),
|
||||
|
||||
open_commit: ( code: Char('c'), modifiers: ( bits: 0,),),
|
||||
|
|
|
|||
Loading…
Reference in a new issue