.vimrc for C开发人员

时间:2011-12-17 09:34:35

标签: c gcc vim

有一个问题How to set .vimrc for c programs?,但没有什么特别有趣的。

通过.vimrc选项,您可以在Linux中促进C开发吗? (例如建筑物,标签,标签......)欢迎任何想法,尤其是“外部建筑与制作”。

3 个答案:

答案 0 :(得分:3)

怎么样?

http://mislav.uniqpath.com/2011/12/vim-revisited/

set nocompatible                " choose no compatibility with legacy vi
syntax enable
set encoding=utf-8
set showcmd                     " display incomplete commands
filetype plugin indent on       " load file type plugins + indentation

"" Whitespace
set nowrap                      " don't wrap lines
set tabstop=2 shiftwidth=2      " a tab is two spaces (or set this to 4)
set expandtab                   " use spaces, not tabs (optional)
set backspace=indent,eol,start  " backspace through everything in insert mode

"" Searching
set hlsearch                    " highlight matches
set incsearch                   " incremental searching
set ignorecase                  " searches are case insensitive...
set smartcase                   " ... unless they contain at least one capital letter

答案 1 :(得分:1)

https://github.com/jslim89/dotfiles

这是我的回购。里面已经有了几种类型的vim插件,包括c.vim,ctags,autocomplete等。

答案 2 :(得分:0)

与plan9assembler的回答中的选项一起,

从vim内部运行make,您可以使用:make,但不会自动打开quickfix窗口并显示错误。要实现这一点,请添加第二个:Make命令[1]:

command! -nargs=* Make write | make! <args> | cwindow

我的另一件事是递归搜索我的ctags文件。以下将使用当前目录中的tags文件,然后递归搜索上面的一个目录,直到找到一个标记文件[2]:

set tags=./tags;