On Mon, 14 Nov 2016, Martin Liška wrote:
> Following patch adds TAB settings to contrib/vimrc file.
> Hope it looks reasonable?

This does not appear applied, are you waiting for approval?  If
so, for something like this in contrib we don't need to get overly
strict and I'd say go ahead.

Gerald
>From 84eb32c4e84b87d690033f7505b8570427ab8468 Mon Sep 17 00:00:00 2001
From: marxin <mli...@suse.cz>
Date: Sun, 13 Nov 2016 12:05:48 +0100
Subject: [PATCH] vimrc: fix TAB settings

---
 contrib/vimrc | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/contrib/vimrc b/contrib/vimrc
index 34e8f35..7c0c587 100644
--- a/contrib/vimrc
+++ b/contrib/vimrc
@@ -35,7 +35,10 @@ function! SetStyle()
   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
-- 
2.10.1

Reply via email to