我正在尝试重新映射/绑定tig中的G
,以匹配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堆栈交换,但是there's no tag for tig there yet上也有类似的问题。
答案 0 :(得分:0)
正如您提到的,bind generic G move-last-line
就足够了。
它对我有用。