如何查看 vim 中特定键的映射?
How to see what mapping for a particular key in vim?
我想知道 <leader>a
在我的 vim 中映射到什么。
有命令知道吗?
使用 :map <leader>a
获取具有该特定前缀的所有映射的列表。
来自 :h :map
List all key mappings for the modes where the map
command applies. Note that ":map" and ":map!" are
used most often, because they include the other modes.
我想知道 <leader>a
在我的 vim 中映射到什么。
有命令知道吗?
使用 :map <leader>a
获取具有该特定前缀的所有映射的列表。
来自 :h :map
List all key mappings for the modes where the map
command applies. Note that ":map" and ":map!" are
used most often, because they include the other modes.