aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2019-01-07 16:28:11 +1300
committerTom Ryder <tom@sanctum.geek.nz>2019-01-07 16:28:11 +1300
commit1c506ef8ed17e23206fa0a69112c9698c5f0d42b (patch)
treec39d0e5de32f9517ae5e5b0c27df9106e2683709
parentMerge branch 'release/v4.9.0' (diff)
parentBump VERSION (diff)
downloaddotfiles-1c506ef8ed17e23206fa0a69112c9698c5f0d42b.tar.gz
dotfiles-1c506ef8ed17e23206fa0a69112c9698c5f0d42b.zip
Merge branch 'release/v4.10.0'v4.10.0
* release/v4.10.0: Bump VERSION Correct function reference in gitcommit ftplugin
-rw-r--r--VERSION4
-rw-r--r--vim/after/ftplugin/gitcommit.vim2
2 files changed, 3 insertions, 3 deletions
diff --git a/VERSION b/VERSION
index a196da31..566fddaf 100644
--- a/VERSION
+++ b/VERSION
@@ -1,2 +1,2 @@
-tejr dotfiles v4.9.0
-Sun Jan 6 20:48:46 UTC 2019
+tejr dotfiles v4.10.0
+Mon Jan 7 03:28:11 UTC 2019
diff --git a/vim/after/ftplugin/gitcommit.vim b/vim/after/ftplugin/gitcommit.vim
index 465c0e81..76a65596 100644
--- a/vim/after/ftplugin/gitcommit.vim
+++ b/vim/after/ftplugin/gitcommit.vim
@@ -7,7 +7,7 @@ let b:undo_ftplugin .= '|setlocal comments< formatoptions<'
if has('autocmd') && exists('+cursorcolumn')
augroup gitcommit_cursorcolumn
autocmd CursorMoved,CursorMovedI <buffer>
- \ let &l:colorcolumn = gitcommit_cursorcolumn#CursorColumn()
+ \ let &l:colorcolumn = gitcommit#CursorColumn()
augroup END
let b:undo_ftplugin .= '|execute ''autocmd! gitcommit_cursorcolumn'''
\ . '|augroup! gitcommit_cursorcolumn'