aboutsummaryrefslogtreecommitdiff
path: root/vim/after/indent/vim.vim
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2018-07-19 10:48:07 +1200
committerTom Ryder <tom@sanctum.geek.nz>2018-07-19 10:48:07 +1200
commit91b08ae3e026e812e2be576b9cd61121ea813c16 (patch)
treea4d7cb551a99565eed7ccee977a4b9abf262463f /vim/after/indent/vim.vim
parentMerge branch 'hotfix/v1.34.3' (diff)
parentBump VERSION (diff)
downloaddotfiles-91b08ae3e026e812e2be576b9cd61121ea813c16.tar.gz
dotfiles-91b08ae3e026e812e2be576b9cd61121ea813c16.zip
Merge branch 'release/v1.35.0'v1.35.0
* release/v1.35.0: Bump VERSION Add compatible/version guard to syntax after files Remove line continuations from VimL indent after Make /usr/include 'path' setting hinge on +unix Set UTF-8 default 'encoding' Interfere more specifically with 'path' Add to 'backupskip' one element at a time Amend a vimrc comment Sort .gitignore Anchor paths in .gitignore Remove dist/vim-plugin.sh Remove vim/dist from .gitignore Use full command name in CentOS system Vim revert Clarify perl.vim ftdetect comment a bit Remove silent! prefix from Debian 'rtp' revert Only add uppercase 'wildignore' if it matters Remove double-trail-slash from 'backupdir' Make 'backupskip' with Unix paths depend on +unix
Diffstat (limited to 'vim/after/indent/vim.vim')
-rw-r--r--vim/after/indent/vim.vim5
1 files changed, 2 insertions, 3 deletions
diff --git a/vim/after/indent/vim.vim b/vim/after/indent/vim.vim
index 73b4e430..ed1b8ebb 100644
--- a/vim/after/indent/vim.vim
+++ b/vim/after/indent/vim.vim
@@ -8,7 +8,6 @@ endif
" Commands to undo the above
if exists('b:undo_indent')
- let b:undo_indent = b:undo_indent
- \ . '|setlocal shiftwidth<'
- \ . '|setlocal softtabstop<'
+ let b:undo_indent = b:undo_indent . '|setlocal shiftwidth<'
+ let b:undo_indent = b:undo_indent . '|setlocal softtabstop<'
endif