aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2018-07-18 22:39:42 +1200
committerTom Ryder <tom@sanctum.geek.nz>2018-07-18 22:39:42 +1200
commit777130035bb9cbd22d3c1502e91a751894c2c434 (patch)
treeb03de743ab7fb2d170ba1ebf3bab71fe21e35770
parentMake /usr/include 'path' setting hinge on +unix (diff)
downloaddotfiles-777130035bb9cbd22d3c1502e91a751894c2c434.tar.gz
dotfiles-777130035bb9cbd22d3c1502e91a751894c2c434.zip
Remove line continuations from VimL indent after
-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