如何查看vim中特定键的映射?

如何查看vim中特定键的映射?,vim,mapping,Vim,Mapping,我想知道在我的vim中,a映射到什么。 是否有命令知道这一点?使用:map 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. 使用:m

我想知道在我的vim中,
a
映射到什么。 是否有命令知道这一点?

使用
:map 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.
使用
:map 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.

这里有一个副本:@Joyas:没有一个答案是针对我的问题的。i、 例如,知道特定前缀的地图。这里有一个重复:@Joyas:没有一个答案是针对我的问题的。i、 例如,知道特定前缀的映射。get的Don't
:verbose
将告诉您上次定义映射的位置。e、 g.
:详细映射a
。请参见
:h:map verbose
。您还可以提供一种模式来缩小结果范围。e、 g.对于正常模式do
:详细的nmap a
。有关更多帮助,请参见
:h映射列表
。不要获取
:verbose
将告诉您上次定义映射的位置。e、 g.
:详细映射a
。请参见
:h:map verbose
。您还可以提供一种模式来缩小结果范围。e、 g.对于正常模式do
:详细的nmap a
。有关更多帮助,请参见
:h地图列表