1 " LLVM coding guidelines conformance for VIM
4 " Maintainer: The LLVM Team, http://llvm.org
5 " WARNING: Read before you source in all these commands and macros! Some
6 " of them may change VIM behavior that you depend on.
8 " You can run VIM with these settings without changing your current setup with:
9 " $ vim -u /path/to/llvm/utils/vim/vimrc
14 " A tab produces a 2-space indentation
19 " Highlight trailing whitespace and lines longer than 80 columns.
20 highlight LongLine ctermbg=DarkYellow guibg=DarkYellow
21 highlight WhitespaceEOL ctermbg=DarkYellow guibg=DarkYellow
23 " Lines longer than 80 columns.
24 au BufWinEnter * let w:m0=matchadd('LongLine', '\%>80v.\+', -1)
26 " Whitespace at the end of a line. This little dance suppresses
27 " whitespace that has just been typed.
28 au BufWinEnter * let w:m1=matchadd('WhitespaceEOL', '\s\+$', -1)
29 au InsertEnter * call matchdelete(w:m1)
30 au InsertEnter * let w:m2=matchadd('WhitespaceEOL', '\s\+\%#\@<!$', -1)
31 au InsertLeave * call matchdelete(w:m2)
32 au InsertLeave * let w:m1=matchadd('WhitespaceEOL', '\s\+$', -1)
34 au BufRead,BufNewFile * syntax match LongLine /\%>80v.\+/
35 au InsertEnter * syntax match WhitespaceEOL /\s\+\%#\@<!$/
36 au InsertLeave * syntax match WhitespaceEOL /\s\+$/
39 " Enable filetype detection
43 " C/C++ programming helpers
46 autocmd FileType * set nocindent smartindent
47 autocmd FileType c,cpp set cindent
49 " Set a few indentation parameters. See the VIM help for cinoptions-values for
50 " details. These aren't absolute rules; they're just an approximation of
51 " common style in LLVM source.
52 set cinoptions=:0,g0,(0,Ws,l1
53 " Add and delete spaces in increments of `shiftwidth' for tabs
56 " Highlight syntax in programming languages
59 " LLVM Makefiles can have names such as Makefile.rules or TEST.nightly.Makefile,
60 " so it's important to categorize them as such.
62 au! BufRead,BufNewFile *Makefile* set filetype=make
65 " In Makefiles, don't expand tabs to spaces, since we need the actual tabs
66 autocmd FileType make set noexpandtab
68 " Useful macros for cleaning up code to conform to LLVM coding guidelines
70 " Delete trailing whitespace and tabs at the end of each line
71 command! DeleteTrailingWs :%s/\s\+$//
73 " Convert all tab characters to two spaces
74 command! Untab :%s/\t/ /g
76 " Enable syntax highlighting for LLVM files. To use, copy
77 " utils/vim/llvm.vim to ~/.vim/syntax .
79 au! BufRead,BufNewFile *.ll set filetype=llvm
82 " Enable syntax highlighting for tablegen files. To use, copy
83 " utils/vim/tablegen.vim to ~/.vim/syntax .
85 au! BufRead,BufNewFile *.td set filetype=tablegen
88 " Enable syntax highlighting for reStructuredText files. To use, copy
89 " rest.vim (http://www.vim.org/scripts/script.php?script_id=973)
92 au! BufRead,BufNewFile *.rst set filetype=rest
95 " Additional vim features to optionally uncomment.
102 " Clang code-completion support. This is somewhat experimental!
104 " A path to a clang executable.
105 let g:clang_path = "clang++"
107 " A list of options to add to the clang commandline, for example to add
108 " include paths, predefined macros, and language options.
111 \ "-D__STDC_LIMIT_MACROS=1","-D__STDC_CONSTANT_MACROS=1",
114 function! ClangComplete(findstart, base)
116 " In findstart mode, look for the beginning of the current identifier.
117 let l:line = getline('.')
118 let l:start = col('.') - 1
119 while l:start > 0 && l:line[l:start - 1] =~ '\i'
125 " Get the current line and column numbers.
129 " Build a clang commandline to do code completion on stdin.
130 let l:the_command = shellescape(g:clang_path) .
131 \ " -cc1 -code-completion-at=-:" . l:l . ":" . l:c
132 for l:opt in g:clang_opts
133 let l:the_command .= " " . shellescape(l:opt)
136 " Copy the contents of the current buffer into a string for stdin.
137 " TODO: The extra space at the end is for working around clang's
138 " apparent inability to do code completion at the very end of the
140 " TODO: Is it better to feed clang the entire file instead of truncating
141 " it at the current line?
142 let l:process_input = join(getline(1, l:l), "\n") . " "
145 let l:input_lines = split(system(l:the_command, l:process_input), "\n")
148 for l:input_line in l:input_lines
149 " Vim's substring operator is annoyingly inconsistent with python's.
150 if l:input_line[:11] == 'COMPLETION: '
151 let l:value = l:input_line[12:]
153 " Chop off anything after " : ", if present, and move it to the menu.
155 let l:spacecolonspace = stridx(l:value, " : ")
156 if l:spacecolonspace != -1
157 let l:menu = l:value[l:spacecolonspace+3:]
158 let l:value = l:value[:l:spacecolonspace-1]
161 " Chop off " (Hidden)", if present, and move it to the menu.
162 let l:hidden = stridx(l:value, " (Hidden)")
164 let l:menu .= " (Hidden)"
165 let l:value = l:value[:l:hidden-1]
168 " Handle "Pattern". TODO: Make clang less weird.
169 if l:value == "Pattern"
171 let l:pound = stridx(l:value, "#")
172 " Truncate the at the first [#, <#, or {#.
174 let l:value = l:value[:l:pound-2]
178 " Filter out results which don't match the base string.
180 if l:value[:strlen(a:base)-1] != a:base
185 " TODO: Don't dump the raw input into info, though it's nice for now.
186 " TODO: The kind string?
190 \ "info": l:input_line,
194 if complete_add(l:item) == 0
201 elseif l:input_line[:9] == "OVERLOAD: "
202 " An overload candidate. Use a crazy hack to get vim to
203 " display the results. TODO: Make this better.
204 let l:value = l:input_line[10:]
208 \ "info": l:input_line,
212 if complete_add(l:item) == 0
224 endfunction ClangComplete
226 " This to enables the somewhat-experimental clang-based
227 " autocompletion support.
228 set omnifunc=ClangComplete