]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
contrib/vimrc: override formatting options for more files
authorAlexander Monakov <amonakov@ispras.ru>
Mon, 2 Sep 2019 12:30:02 +0000 (15:30 +0300)
committerAlexander Monakov <amonakov@gcc.gnu.org>
Mon, 2 Sep 2019 12:30:02 +0000 (15:30 +0300)
* vim-gcc-dev/syntax/gcc-match.vim: Do not override 'tabstop' here.
* vimrc: Set preferred values for 'tabstop', 'softtabstop',
'shiftwidth', 'noexpandtab', 'textwidth', 'formatoptions' for all
files, not just C-like files.

From-SVN: r275316

contrib/ChangeLog
contrib/vim-gcc-dev/syntax/gcc-match.vim
contrib/vimrc

index e5429d79a3d5f45ff984eb739ba983a881958e92..af7b08b327e61e04e4dd8c21007efc6171318600 100644 (file)
@@ -1,3 +1,10 @@
+2019-09-02  Alexander Monakov  <amonakov@ispras.ru>
+
+       * vim-gcc-dev/syntax/gcc-match.vim: Do not override 'tabstop' here.
+       * vimrc: Set preferred values for 'tabstop', 'softtabstop',
+       'shiftwidth', 'noexpandtab', 'textwidth', 'formatoptions' for all
+       files, not just C-like files.
+
 2019-09-02  Martin Liska  <mliska@suse.cz>
 
        * vim-gcc-dev/syntax/gcc-match.vim: Set tabstop=8.
index e46140da044e564958bd168543c68eaf9ca44346..356b07a15b248ae7ff707e993417a4ff047fe196 100644 (file)
@@ -68,6 +68,4 @@ hi def link pdComment Comment
 hi def link pdTodo    Todo
 hi def link pdPreProc PreProc
 
-setlocal tabstop=8
-
 let b:current_syntax = "gcc-match"
index 7c0c5878c63b21d1ad7345273142b6a60e5295b9..bbbe1dd449b756b3d6df0e89820ff6fa8210583d 100644 (file)
@@ -31,17 +31,17 @@ function! SetStyle()
   if stridx(l:fname, 'libsanitizer') != -1
     return
   endif
+  setlocal tabstop=8
+  setlocal softtabstop=2
+  setlocal shiftwidth=2
+  setlocal noexpandtab
+  setlocal textwidth=80
+  setlocal formatoptions-=ro formatoptions+=cqlt
   let l:ext = fnamemodify(l:fname, ":e")
   let l:c_exts = ['c', 'h', 'cpp', 'cc', 'C', 'H', 'def', 'java']
   if index(l:c_exts, l:ext) != -1
     setlocal cindent
-    setlocal tabstop=8
-    setlocal softtabstop=2
-    setlocal shiftwidth=2
-    setlocal noexpandtab
     setlocal cinoptions=>4,n-2,{2,^-2,:2,=2,g0,f0,h2,p4,t0,+2,(0,u0,w1,m0
-    setlocal textwidth=80
-    setlocal formatoptions-=ro formatoptions+=cqlt
   endif
 endfunction