summaryrefslogtreecommitdiffstats
path: root/runtime/ftplugin/make.vim
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2020-10-26 21:12:46 +0100
committerBram Moolenaar <Bram@vim.org>2020-10-26 21:12:46 +0100
commitcb80aa2d53e56d3aba3b3c439fb467f29a750c5e (patch)
treeac7c6764b40181dc3ef300510213e0f208329a31 /runtime/ftplugin/make.vim
parent8133cc6bf454eb90bb0868f7cf806fce5c0c9fe6 (diff)
Update runtime files.
Diffstat (limited to 'runtime/ftplugin/make.vim')
-rw-r--r--runtime/ftplugin/make.vim6
1 files changed, 3 insertions, 3 deletions
diff --git a/runtime/ftplugin/make.vim b/runtime/ftplugin/make.vim
index bfa8703082..168bc38eb3 100644
--- a/runtime/ftplugin/make.vim
+++ b/runtime/ftplugin/make.vim
@@ -1,7 +1,7 @@
" Vim filetype plugin file
" Language: Make
" Maintainer: Bram Moolenaar <Bram@vim.org>
-" Last Change: 2019 Apr 02
+" Last Change: 2020 Oct 16
" Only do this when not done yet for this buffer
if exists("b:did_ftplugin")
@@ -9,10 +9,10 @@ if exists("b:did_ftplugin")
endif
let b:did_ftplugin = 1
-let b:undo_ftplugin = "setl et< sts< fo< com< cms< inc<"
+let b:undo_ftplugin = "setl et< sts< sw< fo< com< cms< inc<"
" Make sure a hard tab is used, required for most make programs
-setlocal noexpandtab softtabstop=0
+setlocal noexpandtab softtabstop=0 shiftwidth=0
" Set 'formatoptions' to break comment lines but not other lines,
" and insert the comment leader when hitting <CR> or using "o".