Skip to content

Commit

Permalink
change refresh table shortcut (to R)
Browse files Browse the repository at this point in the history
- switched from 'r' to 'R' to be more consistent with other refresh shortcuts
  • Loading branch information
gytic committed Nov 27, 2024
1 parent e9c93a7 commit ab57a00
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/Keymap.go
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ var Keymaps = KeymapSystem{
Bind{Key: Key{Char: 'p'}, Cmd: cmd.PreviousFoundNode, Description: "Go to previous found node"},
Bind{Key: Key{Char: 'c'}, Cmd: cmd.TreeCollapseAll, Description: "Collapse all"},
Bind{Key: Key{Char: 'e'}, Cmd: cmd.ExpandAll, Description: "Expand all"},
Bind{Key: Key{Char: 'r'}, Cmd: cmd.Refresh, Description: "Refresh tree"},
Bind{Key: Key{Char: 'R'}, Cmd: cmd.Refresh, Description: "Refresh tree"},
},
TreeFilterGroup: {
Bind{Key: Key{Code: tcell.KeyEscape}, Cmd: cmd.UnfocusTreeFilter, Description: "Unfocus tree filter"},
Expand Down

0 comments on commit ab57a00

Please sign in to comment.