no more angle matching

This commit is contained in:
Barak Michener 2014-03-23 14:24:57 -04:00
parent 312c88e95e
commit ae67b37b50
7 changed files with 116 additions and 117 deletions

View file

@ -43,7 +43,7 @@ au Filetype html,xml,xsl source ~/.vim/closetag.vim
au BufRead,BufNewFile *.go set filetype=go au BufRead,BufNewFile *.go set filetype=go
au FileType cpp let b:delimitMate_matchpairs = "(:),[:],{:},<:>" au FileType cpp let b:delimitMate_matchpairs = "(:),[:],{:}"
"Settings per filetype "Settings per filetype
augroup python augroup python

2
.vimrc
View file

@ -182,7 +182,7 @@ let g:ycm_key_invoke_completion = "<Leader><Tab>"
"let g:ycm_autoclose_preview_window_after_completion = 1 "let g:ycm_autoclose_preview_window_after_completion = 1
" * UltiSnips " * UltiSnips
let g:UltiSnipsSnippetDirectories=["UltiSnips", "snippets"] let g:UltiSnipsSnippetDirectories=["UltiSnips", "usnips"]
let g:UltiSnipsExpandTrigger="<Leader>," let g:UltiSnipsExpandTrigger="<Leader>,"
let g:UltiSnipsJumpForwardTrigger="<Leader>," let g:UltiSnipsJumpForwardTrigger="<Leader>,"
let g:UltiSnipsJumpBackwardTrigger="<Leader><s-,>" let g:UltiSnipsJumpBackwardTrigger="<Leader><s-,>"

View file

@ -14,7 +14,6 @@ flags = [
'-Wno-variadic-macros', '-Wno-variadic-macros',
'-fexceptions', '-fexceptions',
'-DNDEBUG', '-DNDEBUG',
'-DUSE_CLANG_COMPLETER',
# THIS IS IMPORTANT! Without a "-std=<something>" flag, clang won't know which # THIS IS IMPORTANT! Without a "-std=<something>" flag, clang won't know which
# language to use when compiling headers. So it will guess. Badly. So C++ # language to use when compiling headers. So it will guess. Badly. So C++
# headers will be compiled as C headers. You don't want that so ALWAYS specify # headers will be compiled as C headers. You don't want that so ALWAYS specify