adding vim-like keybindings to gitui
parent
3d6d61c762
commit
3c86c09c51
@ -1,2 +1,3 @@
|
|||||||
backup
|
backup
|
||||||
__pycache__
|
__pycache__
|
||||||
|
gitui/gitui.log
|
||||||
|
@ -0,0 +1,8 @@
|
|||||||
|
(
|
||||||
|
move_left: Some(( code: Char('h'), modifiers: ( bits: 0,),)),
|
||||||
|
move_right: Some(( code: Char('l'), modifiers: ( bits: 0,),)),
|
||||||
|
move_up: Some(( code: Char('k'), modifiers: ( bits: 0,),)),
|
||||||
|
move_down: Some(( code: Char('j'), modifiers: ( bits: 0,),)),
|
||||||
|
stash_open: Some(( code: Char('l'), modifiers: ( bits: 0,),)),
|
||||||
|
open_help: Some(( code: F(1), modifiers: ( bits: 0,),)),
|
||||||
|
)
|
@ -0,0 +1,23 @@
|
|||||||
|
(
|
||||||
|
selected_tab: Reset,
|
||||||
|
command_fg: White,
|
||||||
|
selection_bg: Blue,
|
||||||
|
selection_fg: White,
|
||||||
|
cmdbar_bg: Blue,
|
||||||
|
cmdbar_extra_lines_bg: Blue,
|
||||||
|
disabled_fg: DarkGray,
|
||||||
|
diff_line_add: Green,
|
||||||
|
diff_line_delete: Red,
|
||||||
|
diff_file_added: LightGreen,
|
||||||
|
diff_file_removed: LightRed,
|
||||||
|
diff_file_moved: LightMagenta,
|
||||||
|
diff_file_modified: Yellow,
|
||||||
|
commit_hash: Magenta,
|
||||||
|
commit_time: LightCyan,
|
||||||
|
commit_author: Green,
|
||||||
|
danger_fg: Red,
|
||||||
|
push_gauge_bg: Blue,
|
||||||
|
push_gauge_fg: Reset,
|
||||||
|
tag_fg: LightMagenta,
|
||||||
|
branch_fg: LightYellow,
|
||||||
|
)
|
Loading…
Reference in New Issue