aboutsummaryrefslogtreecommitdiff
path: root/vim/after/indent/awk.vim
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2019-12-18 17:32:18 +1300
committerTom Ryder <tom@sanctum.geek.nz>2019-12-18 17:32:18 +1300
commitc978da17884ef456cb41d28133790550f98b6ae8 (patch)
treecc8580f3d91f32367b08b5f6d194d705961de71a /vim/after/indent/awk.vim
parentMerge branch 'release/v8.5.0' (diff)
parentBump VERSION (diff)
downloaddotfiles-c978da17884ef456cb41d28133790550f98b6ae8.tar.gz
dotfiles-c978da17884ef456cb41d28133790550f98b6ae8.zip
Merge branch 'release/v8.6.0'v8.6.0
* release/v8.6.0: Refactor indent macros into autoload function Fix indentation of a Makefile line Put common indent setting patterns in macros
Diffstat (limited to 'vim/after/indent/awk.vim')
-rw-r--r--vim/after/indent/awk.vim8
1 files changed, 1 insertions, 7 deletions
diff --git a/vim/after/indent/awk.vim b/vim/after/indent/awk.vim
index ba6dfdeb..61f09a1e 100644
--- a/vim/after/indent/awk.vim
+++ b/vim/after/indent/awk.vim
@@ -1,8 +1,2 @@
" Use four spaces for indentation
-setlocal expandtab
-setlocal shiftwidth=4
-let b:undo_ftplugin .= '|setlocal expandtab< shiftwidth<'
-if &l:softtabstop != -1
- let &l:softtabstop = &l:shiftwidth
- let b:undo_ftplugin .= '|setlocal softtabstop<'
-endif
+call indent#spaces(4)