diff options
author | 2025-01-04 16:12:38 +0800 | |
---|---|---|
committer | 2025-01-04 16:12:38 +0800 | |
commit | 7dfd1075ae6b68878ca6891beb0c0a828307cd27 (patch) | |
tree | 92e74ddfd8c8fe618035aad110c26861395bd6aa | |
parent | bfbd3b4f8722aa54d031459b2792d116c4f50ad6 (diff) | |
download | vimrc-7dfd1075ae6b68878ca6891beb0c0a828307cd27.tar.gz vimrc-7dfd1075ae6b68878ca6891beb0c0a828307cd27.zip |
Fix bugs in clang-format and tab configure
clang-format maybe not exist on some environment, so it's necessary to
use default gg=G format. Besides, clang-format should use currect style
file to work but not just `clang-format` command by default, because it
will use .clang-format from the curreent dir but not the dir the file is
in.
And, maybe some other config affect tab set, tab is expanded in
shell/make/vimscript, which is not my mean. Now it's fixed.
-rw-r--r-- | vimrcs/codecmd.vim | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/vimrcs/codecmd.vim b/vimrcs/codecmd.vim index 179e68e..8ca51f6 100644 --- a/vimrcs/codecmd.vim +++ b/vimrcs/codecmd.vim | |||
@@ -2,7 +2,7 @@ set expandtab " 设置tab键替换为tabstop规定的空格数 | |||
2 | set tabstop=4 " 编辑时tab键占用的空格数 | 2 | set tabstop=4 " 编辑时tab键占用的空格数 |
3 | set shiftwidth=4 " 设置tab的间隔(格式化时) | 3 | set shiftwidth=4 " 设置tab的间隔(格式化时) |
4 | set softtabstop=4 " 设置退格键退格的空格数,让vim把连续的空格当作一个tab | 4 | set softtabstop=4 " 设置退格键退格的空格数,让vim把连续的空格当作一个tab |
5 | autocmd FileType asm,nasm,vim,sh,makefile set tabstop=4 softtabstop=4 shiftwidth=4 noexpandtab | 5 | autocmd FileType *asm,vim,*sh,makefile set tabstop=4 softtabstop=4 shiftwidth=4 noexpandtab |
6 | 6 | ||
7 | set showmatch " 在输入括号时光标会短暂地跳到与之相匹配的括号处 | 7 | set showmatch " 在输入括号时光标会短暂地跳到与之相匹配的括号处 |
8 | set nowrap " 设置自动折行 | 8 | set nowrap " 设置自动折行 |
@@ -31,7 +31,6 @@ function! PreserveCursorAndFormat() | |||
31 | call winrestview(l:save_view) | 31 | call winrestview(l:save_view) |
32 | endfunction | 32 | endfunction |
33 | 33 | ||
34 | |||
35 | command! -nargs=0 ClangFormat :call ClangFormat() | 34 | command! -nargs=0 ClangFormat :call ClangFormat() |
36 | autocmd FileType c,h,cpp,hpp,cc nnoremap <buffer> gg=G :ClangFormat<CR> | 35 | autocmd FileType c,h,cpp,hpp,cc nnoremap <buffer> gg=G :ClangFormat<CR> |
37 | " 定义ClangFormat命令: | 36 | " 定义ClangFormat命令: |
@@ -39,10 +38,13 @@ autocmd FileType c,h,cpp,hpp,cc nnoremap <buffer> gg=G :ClangFormat<CR> | |||
39 | " 否则使用默认规则,缩进为4 | 38 | " 否则使用默认规则,缩进为4 |
40 | function! ClangFormat() | 39 | function! ClangFormat() |
41 | let clang_format = "clang-format" | 40 | let clang_format = "clang-format" |
42 | " find .clang-format file from cur path upward | 41 | if !executable(clang_format) |
43 | let clang_format_file = findfile(".clang-format", ".;") | 42 | normal gg=G |
43 | return | ||
44 | endif | ||
45 | let clang_format_file = findfile(".clang-format", expand('%:p:h') . ";") | ||
44 | if clang_format_file != "" | 46 | if clang_format_file != "" |
45 | let clang_format = clang_format . " -style=file" | 47 | let clang_format = clang_format . " -style=file:" . clang_format_file |
46 | else | 48 | else |
47 | let clang_format = clang_format . " -style='{IndentWidth: 4}'" | 49 | let clang_format = clang_format . " -style='{IndentWidth: 4}'" |
48 | endif | 50 | endif |