aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2019-06-07 01:18:11 +1200
committerTom Ryder <tom@sanctum.geek.nz>2019-06-07 01:18:11 +1200
commit4ae4e5ba4746dfaa7e4fa01de87c3022ec710a57 (patch)
tree4d496353ef39090e59a598078ce094c620268357
parentMerge branch 'release/v2.0.0' into develop (diff)
parentBump VERSION (diff)
downloadvim-quickfix-auto-open-4ae4e5ba4746dfaa7e4fa01de87c3022ec710a57.tar.gz
vim-quickfix-auto-open-4ae4e5ba4746dfaa7e4fa01de87c3022ec710a57.zip
Merge branch 'hotfix/v2.0.1' into develop
* hotfix/v2.0.1: Define quickfix command name for VimEnter hook
-rw-r--r--VERSION2
-rw-r--r--plugin/quickfix_auto_open.vim2
2 files changed, 2 insertions, 2 deletions
diff --git a/VERSION b/VERSION
index 227cea2..38f77a6 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-2.0.0
+2.0.1
diff --git a/plugin/quickfix_auto_open.vim b/plugin/quickfix_auto_open.vim
index 507dff3..96676c5 100644
--- a/plugin/quickfix_auto_open.vim
+++ b/plugin/quickfix_auto_open.vim
@@ -16,5 +16,5 @@ augroup quickfix_auto_open
autocmd QuickFixCmdPost *
\ call quickfix_auto_open#(expand('<amatch>'))
autocmd VimEnter *
- \ doautocmd quickfix_auto_open QuickFixCmdPost
+ \ doautocmd quickfix_auto_open QuickFixCmdPost cfile
augroup END