vim mapleader命令-t搞砸了vim配置

时间:2013-07-17 07:55:12

标签: vim plugins configuration

在我的一个脚本文件中,我使用,定义了一些映射,例如

nmap ,t <ESC>:Todos<CR>:w<CR>

目前我安装了command-T。在此过程中,我在.vimrc中设置了mapleader

let mapleader=","

这搞砸了我自己的映射,所以我从配置中删除了mapleader。从我的.vim目录添加我removed command-T。但不幸的是,这没有帮助。

当我现在打字,t时,会打开一个拆分屏幕缓冲区,其中包含一种标记列表。如果我在这个新缓冲区中键入?,它看起来像这样:

" <enter> : Jump to tag definition
" o : Jump to tag definition in new window
" p : Preview the tag definition
" <space> : Display tag prototype
" u : Update tag list
" s : Select sort field
" d : Remove file from taglist
" x : Zoom-out/Zoom-in taglist window
" + : Open a fold
" - : Close a fold
" * : Open all folds
" = : Close all folds
" [[ : Move to the start of previous file
" ]] : Move to the start of next file
" q : Close the taglist window
" ? : Remove help text

看起来像是以某种方式激活的vim功能。如何让我的,t再次使用我的映射?

1 个答案:

答案 0 :(得分:0)

可以搞清楚。正在运行:nmap向我展示了,t上映射的功能。有了这些信息,我可以找到麻烦制造者。是taglist-plugin。

现在再次运作:)