commit 0172f6b6e8abc8d9057cba4b6194390191de9418
parent e0054b2d928499d1102e8f97238d756859cee497
Author: Alex Balgavy <a.balgavy@gmail.com>
Date: Thu, 15 Aug 2019 19:38:14 +0200
vim: fix undo_ftplugin setting, missed a crucial dot
Former-commit-id: c8b7c928477cce207339f5a38aec7147b8bf5333
Diffstat:
10 files changed, 10 insertions(+), 10 deletions(-)
diff --git a/vim/after/ftplugin/ada.vim b/vim/after/ftplugin/ada.vim
@@ -1,3 +1,3 @@
setlocal makeprg=gnatmake\ %
setlocal errorformat=%f:%l:%c:\ %m,%f:%l:%c:\ %tarning:\ %m,%f:%l:%c:\ (%ttyle)\ %m
-let b:undo_ftplugin = '|setlocal makeprg< errorformat<'
+let b:undo_ftplugin .= '|setlocal makeprg< errorformat<'
diff --git a/vim/after/ftplugin/c.vim b/vim/after/ftplugin/c.vim
@@ -3,4 +3,4 @@ nnoremap <buffer> <leader>mc :silent make clean<CR>\|:redraw!<CR>
if v:version >= 800
packadd termdebug
endif
-let b:undo_ftplugin = ''
+let b:undo_ftplugin .= ''
diff --git a/vim/after/ftplugin/gitcommit.vim b/vim/after/ftplugin/gitcommit.vim
@@ -1,3 +1,3 @@
setlocal spell
setlocal spelllang=en
-let b:undo_ftplugin = '|setlocal spell< spelllang<'
+let b:undo_ftplugin .= '|setlocal spell< spelllang<'
diff --git a/vim/after/ftplugin/markdown.vim b/vim/after/ftplugin/markdown.vim
@@ -7,4 +7,4 @@ inoremap <buffer> ;6 ######
setlocal makeprg=pandoc\ %:p:S\ -o\ %:p:r:S.pdf\ \&\&\ open\ -g\ %:p:r:S.pdf
setlocal conceallevel=2
setlocal wrap
-let b:undo_ftplugin = '|setlocal makeprg< conceallevel< wrap <'
+let b:undo_ftplugin .= '|setlocal makeprg< conceallevel< wrap <'
diff --git a/vim/after/ftplugin/netrw.vim b/vim/after/ftplugin/netrw.vim
@@ -1,2 +1,2 @@
setlocal bufhidden=delete
-let b:undo_ftplugin = '|setlocal bufhidden<'
+let b:undo_ftplugin .= '|setlocal bufhidden<'
diff --git a/vim/after/ftplugin/qf.vim b/vim/after/ftplugin/qf.vim
@@ -1,2 +1,2 @@
setlocal nocursorline
-let b:undo_ftplugin = '|setlocal nocursorline<'
+let b:undo_ftplugin .= '|setlocal nocursorline<'
diff --git a/vim/after/ftplugin/sh.vim b/vim/after/ftplugin/sh.vim
@@ -1,2 +1,2 @@
setlocal makeprg=shellcheck\ -f\ gcc\ %
-let b:undo_ftplugin = '|setlocal makeprg<'
+let b:undo_ftplugin .= '|setlocal makeprg<'
diff --git a/vim/after/ftplugin/tagbar.vim b/vim/after/ftplugin/tagbar.vim
@@ -1,2 +1,2 @@
setlocal nocursorline
-let b:undo_ftplugin = '|setlocal nocursorline<'
+let b:undo_ftplugin .= '|setlocal nocursorline<'
diff --git a/vim/after/ftplugin/vim.vim b/vim/after/ftplugin/vim.vim
@@ -1,2 +1,2 @@
setlocal keywordprg=:help
-let b:undo_ftplugin = '|setlocal keywordprg<'
+let b:undo_ftplugin .= '|setlocal keywordprg<'
diff --git a/vim/after/ftplugin/vimwiki.vim b/vim/after/ftplugin/vimwiki.vim
@@ -1,3 +1,3 @@
setlocal wrap shiftwidth=4 tabstop=4 softtabstop=4 breakindent breakindentopt=shift:3
cabbrev <buffer> table VimwikiTable
-let b:undo_ftplugin = '|setlocal wrap< shiftwidth< tabstop< softtabstop< breakindent< breakindentopt<'
+let b:undo_ftplugin .= '|setlocal wrap< shiftwidth< tabstop< softtabstop< breakindent< breakindentopt<'