Last active
June 29, 2016 12:02
-
-
Save KentaYamada/85c9d4c48c8facc293bc489815a32c5e to your computer and use it in GitHub Desktop.
vim-clangでclangのバージョンを確認する
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function init_clang_conf() | |
for i in [6, 5, 4] | |
if executable("clang-3.".i) && executable("clang-format-3.".i) | |
let g:clang_exec = "clang-3.".i | |
let g:clang_format_exec = "clang-format-3.".i | |
return | |
endif | |
endfor | |
let g:clang_exec = "clang" | |
let g:clang_format_exec = "clang-format" | |
endfunction |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment