Skip to content

Commit 67adb66

Browse files
committed
Merge branch 'master' of github.com:rhysd/vim-clang-format
2 parents 2f3b8f7 + 7704c87 commit 67adb66

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

doc/clang-format.txt

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,15 @@ DEPENDENCY *vim-clang-format-dependency*
4646

4747
|clang-format| (3.4 or later is required)
4848
http://clang.llvm.org/docs/ClangFormat.html
49+
50+
Note:
51+
clang-format 3.4 in Ubuntu 13.04 seems to be old. Please use LLVM's
52+
official apt repository.
53+
http://llvm.org/apt/
54+
4955
|vim-operator-user| (highly recommended)
5056
https://github.com/kana/vim-operator-user
57+
5158
|vimproc| (recommended in Windows)
5259
https://github.com/Shougo/vimproc.vim
5360

t/clang_format_spec.vim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
" helpers "{{{
55
" clang-format detection
66
function! s:detect_clang_format()
7-
for candidate in ['clang-format-3.4', 'clang-format', 'clang-format-HEAD']
7+
for candidate in ['clang-format-3.4', 'clang-format', 'clang-format-HEAD', 'clang-format-3.5']
88
if executable(candidate)
99
return candidate
1010
endif

0 commit comments

Comments
 (0)