From c166e93c341c91eac95472213cee034ea161317d Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Sat, 8 Jun 2019 20:35:36 +1200 Subject: Reverse overzealous factoring out of variable --- vim/vimrc | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'vim') diff --git a/vim/vimrc b/vim/vimrc index 25588943..a43c63e0 100644 --- a/vim/vimrc +++ b/vim/vimrc @@ -64,8 +64,7 @@ set shiftwidth=4 " Indent with four spaces " Vim is new enough to support it (v7.3.693), apply a negative value to do " this dynamically if 'shiftwidth' changes. " -let s:negative_softtabstop = vimrc#Version('7.3.693') -let &softtabstop = s:negative_softtabstop ? -1 : &shiftwidth +let &softtabstop = vimrc#Version('7.3.693') ? -1 : &shiftwidth " Relax traditional vi's harsh standards over what regions of the buffer can " be removed with backspace in insert mode. While this admittedly allows bad -- cgit v1.2.3