From 9e798d42a5c283a51d51be4762ea33b700ff5f00 Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Fri, 7 Jun 2019 01:16:54 +1200 Subject: Define quickfix command name for VimEnter hook Otherwise it uses the VimEnter filename, which causes a nonexistent location list error if it happens to start with 'l'. --- plugin/quickfix_auto_open.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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('')) autocmd VimEnter * - \ doautocmd quickfix_auto_open QuickFixCmdPost + \ doautocmd quickfix_auto_open QuickFixCmdPost cfile augroup END -- cgit v1.2.3 From 90615f22c3588065a7596475960d19cf7d0b95c3 Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Fri, 7 Jun 2019 01:17:37 +1200 Subject: Bump VERSION --- VERSION | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VERSION b/VERSION index 227cea2..38f77a6 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -2.0.0 +2.0.1 -- cgit v1.2.3