From 8d29d806d5236003538dc67911366672684ab503 Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Mon, 17 Jun 2019 10:44:51 +1200 Subject: Correct a comment --- autoload/quickfix_auto_open.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autoload/quickfix_auto_open.vim b/autoload/quickfix_auto_open.vim index 5dfc582..c578d0c 100644 --- a/autoload/quickfix_auto_open.vim +++ b/autoload/quickfix_auto_open.vim @@ -19,7 +19,7 @@ function! quickfix_auto_open#(command) abort elseif a:command =~# '^l' lwindow " Command started with 'l', open this window's location list else - cwindow " Command didn't start with 'l', open this window's quickfix list + cwindow " Command didn't start with 'l', open the quickfix list endif endfunction -- cgit v1.2.3 From 24938dd8e43975e631d2928bb049cad7297803a1 Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Mon, 17 Jun 2019 10:44:58 +1200 Subject: Adjust autocmd to avoid autoload on each VimEnter --- 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 96676c5..c9473c4 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 cfile + \ cwindow augroup END -- cgit v1.2.3 From 67c03110fa5255d0b67e6691c1769c125d3f1064 Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Mon, 17 Jun 2019 10:45:25 +1200 Subject: Bump VERSION --- VERSION | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VERSION b/VERSION index 38f77a6..7ec1d6d 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -2.0.1 +2.1.0 -- cgit v1.2.3 From 85685593425fc84a767ee6e4e362c2de2bf1a1f8 Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Mon, 17 Jun 2019 10:45:41 +1200 Subject: Bump documentation date --- doc/quickfix_auto_open.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/quickfix_auto_open.txt b/doc/quickfix_auto_open.txt index 28fe342..d0015db 100644 --- a/doc/quickfix_auto_open.txt +++ b/doc/quickfix_auto_open.txt @@ -1,4 +1,4 @@ -*quickfix_auto_open.txt* For Vim version 7.0 Last change: 2019 Jun 4 +*quickfix_auto_open.txt* For Vim version 7.0 Last change: 2019 Jun 17 DESCRIPTION *quickfix_auto_open* -- cgit v1.2.3