当前位置:  开发笔记 > 开发工具 > 正文

Vim关键字完成

如何解决《Vim关键字完成》经验,为你挑选了2个好方法。

如何告诉Vim编辑器我的包含文件路径,以便在按CTRL+ 时它可以自动完成功能名称N

例如,我有一个如下的C程序:

#include
int main()
{
    sca // here I press control+N, it does not complete to scanf
}

Rob Wells.. 19

在你的.vimrc,添加路径.vimrc:

set path+=/usr/include/**
set path+=/my_include_dir/include
set path+=/my_include_dir/srclib/apr/**
set path+=/my_other_include_dir/srclib/apr-util/**

** means all sub-directories.
*  means all contained directories
.  means all files in the directory of the found file
+= means prepend to existing path (iirc)

您也可以通过打开文件然后输入来检查路径

:checkpath

这将为您提供缺少的所有包含文件的列表.注意它似乎没有处理预处理器指令,所以你会得到一些误报.进入

:checkpath!

将提供已找到和缺失的包含文件的完整列表.



1> Rob Wells..:

在你的.vimrc,添加路径.vimrc:

set path+=/usr/include/**
set path+=/my_include_dir/include
set path+=/my_include_dir/srclib/apr/**
set path+=/my_other_include_dir/srclib/apr-util/**

** means all sub-directories.
*  means all contained directories
.  means all files in the directory of the found file
+= means prepend to existing path (iirc)

您也可以通过打开文件然后输入来检查路径

:checkpath

这将为您提供缺少的所有包含文件的列表.注意它似乎没有处理预处理器指令,所以你会得到一些误报.进入

:checkpath!

将提供已找到和缺失的包含文件的完整列表.



2> Kent Fredric..:

此外,重要的是要注意有许多完成功能.

^x ^o  = "omnicomplete" 
^x ^i  = "included-files completion" 
^x ^f  = "path completion" 
^x ^l  = "Complete this line using one that looks the same"

看到

:help ins-completion 

更多.

推荐阅读
TXCWB_523
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有