我正在尝试重新映射/绑定tigG
以匹配所有 tig 键盘映射中的 vim 功能(移至最后一行)。
我阅读了 tigrc 手册页,这里是关于绑定到键盘映射的所有内容
Keymaps
Valid keymaps are: main, diff, log, help, pager, status, stage,
tree, blob, blame, refs, stash, grep and generic. Use generic to
set key mapping in all keymaps. Use search to define keys for
navigating search results during search.
这是目前有效的方法,但不是最佳或可取的:
bind main G move-last-line
bind help G move-last-line
bind grep G move-last-line
这是我期望的工作:
bind generic G move-last-line
或bind main,help,grep G move-last-line
PS:我觉得这种类型的问题更适合unix堆栈交换,但是那里还没有tig的标签,并且在SO上有类似的问题。