summaryrefslogtreecommitdiffstats
path: root/ftplugin/make.vim
diff options
context:
space:
mode:
authorAdam Stankiewicz <sheerun@sher.pl>2020-11-02 18:19:06 +0100
committerAdam Stankiewicz <sheerun@sher.pl>2020-11-02 18:19:15 +0100
commit0738ad654d4f2f89b77dcb4197011a293e4dfcf3 (patch)
tree25de763b5adbc53b997085bcf8f49d6b09a45cd0 /ftplugin/make.vim
parent05e21a9e252b283b2d71568ad3b671d7f28fe0bc (diff)
downloadvim-polyglot-0738ad654d4f2f89b77dcb4197011a293e4dfcf3.tar.gz
vim-polyglot-0738ad654d4f2f89b77dcb4197011a293e4dfcf3.zip
Update
Diffstat (limited to '')
-rw-r--r--ftplugin/make.vim6
1 files changed, 3 insertions, 3 deletions
diff --git a/ftplugin/make.vim b/ftplugin/make.vim
index 95556e54..ee4157f1 100644
--- a/ftplugin/make.vim
+++ b/ftplugin/make.vim
@@ -5,7 +5,7 @@ endif
" 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")
@@ -13,10 +13,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".