aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2018-11-30 09:38:58 +1300
committerTom Ryder <tom@sanctum.geek.nz>2018-11-30 09:38:58 +1300
commit0598505cf68b8580ad55c8466470ec7f49d2c241 (patch)
tree78f6c88d19e40b466a30714496e02e4f2f291355
parentMerge branch 'release/v2.1.0' into develop (diff)
parentBump VERSION (diff)
downloaddotfiles-0598505cf68b8580ad55c8466470ec7f49d2c241.tar.gz
dotfiles-0598505cf68b8580ad55c8466470ec7f49d2c241.zip
Merge branch 'hotfix/v2.1.1' into develop
* hotfix/v2.1.1: Remove stray pipe from b:undo_indent setting
-rw-r--r--VERSION4
-rw-r--r--vim/after/indent/vim.vim2
2 files changed, 3 insertions, 3 deletions
diff --git a/VERSION b/VERSION
index e7ac2aed..aae83bc2 100644
--- a/VERSION
+++ b/VERSION
@@ -1,2 +1,2 @@
-tejr dotfiles v2.1.0
-Thu Nov 29 20:34:34 UTC 2018
+tejr dotfiles v2.1.1
+Thu Nov 29 20:36:00 UTC 2018
diff --git a/vim/after/indent/vim.vim b/vim/after/indent/vim.vim
index 3d439458..6e2eb7f3 100644
--- a/vim/after/indent/vim.vim
+++ b/vim/after/indent/vim.vim
@@ -2,7 +2,7 @@
" Should only need to undo this if the stock plugin didn't
setlocal indentkeys-=0#,0{,0},0),:
if !exists('b:undo_indent')
- let b:undo_indent = '|setlocal indentkeys<'
+ let b:undo_indent = 'setlocal indentkeys<'
endif
" Observe VimL conventions for two-space indents