aboutsummaryrefslogtreecommitdiff
path: root/autoload
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2019-06-17 10:44:51 +1200
committerTom Ryder <tom@sanctum.geek.nz>2019-06-17 10:44:51 +1200
commit8d29d806d5236003538dc67911366672684ab503 (patch)
tree5aebde9cdb8729d1ebefadb4e8ba08b78ab4085f /autoload
parentMerge branch 'hotfix/v2.0.1' into develop (diff)
downloadvim-quickfix-auto-open-8d29d806d5236003538dc67911366672684ab503.tar.gz
vim-quickfix-auto-open-8d29d806d5236003538dc67911366672684ab503.zip
Correct a comment
Diffstat (limited to 'autoload')
-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