Lines Matching +refs:is +refs:completion +refs:line
26 " Whitespace at the end of a line. This little dance suppresses
70 " Delete trailing whitespace and tabs at the end of each line
102 " Clang code-completion support. This is somewhat experimental!
117 let l:line = getline('.')
119 while l:start > 0 && l:line[l:start - 1] =~ '\i'
125 " Get the current line and column numbers.
126 let l:l = line('.')
129 " Build a clang commandline to do code completion on stdin.
131 \ " -cc1 -code-completion-at=-:" . l:l . ":" . l:c
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
141 " it at the current line?
149 " Vim's substring operator is annoyingly inconsistent with python's.