aboutsummaryrefslogtreecommitdiff
path: root/autoload/quickfix_auto_open.vim
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2019-06-17 10:45:50 +1200
committerTom Ryder <tom@sanctum.geek.nz>2019-06-17 10:45:50 +1200
commiteabaee82018c26c9e4ef4bd0f95ed55a7ef1c9d5 (patch)
tree4cfcd092265f9798a9d5a1237d608ba803a65949 /autoload/quickfix_auto_open.vim
parentMerge branch 'hotfix/v2.0.1' (diff)
parentBump documentation date (diff)
downloadvim-quickfix-auto-open-eabaee82018c26c9e4ef4bd0f95ed55a7ef1c9d5.tar.gz
vim-quickfix-auto-open-eabaee82018c26c9e4ef4bd0f95ed55a7ef1c9d5.zip
Merge branch 'release/v2.1.0'v2.1.0
* release/v2.1.0: Bump documentation date Adjust autocmd to avoid autoload on each VimEnter Correct a comment
Diffstat (limited to 'autoload/quickfix_auto_open.vim')
-rw-r--r--autoload/quickfix_auto_open.vim2
1 files changed, 1 insertions, 1 deletions
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