aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorzeertzjq <zeertzjq@outlook.com>2024-08-06 06:47:05 +0800
committerzeertzjq <zeertzjq@outlook.com>2024-08-06 06:47:30 +0800
commit9a30abb29255cc3cffa0c21ea13faccac092ea78 (patch)
tree393ece5d9c300d6cf26cde502388894a61739c11
parentb3641b80083d395b322fa2c5c84ed67f39cd76cd (diff)
downloadrneovim-9a30abb29255cc3cffa0c21ea13faccac092ea78.tar.gz
rneovim-9a30abb29255cc3cffa0c21ea13faccac092ea78.tar.bz2
rneovim-9a30abb29255cc3cffa0c21ea13faccac092ea78.zip
vim-patch:217d3c1: runtime(doc): capitalize correctly
* do not capitalize after a double colon when introducing a list * Capitalize a header line closes: vim/vim#15433 https://github.com/vim/vim/commit/217d3c17c6fa8d1223fa8dd39efd8c32897f9441 Co-authored-by: Christian Brabandt <cb@256bit.org>
-rw-r--r--runtime/doc/quickfix.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/doc/quickfix.txt b/runtime/doc/quickfix.txt
index 17c12e7a8d..83e495ffdd 100644
--- a/runtime/doc/quickfix.txt
+++ b/runtime/doc/quickfix.txt
@@ -994,7 +994,7 @@ Another option is using 'makeencoding'.
==============================================================================
5. Using :vimgrep and :grep *grep* *lid*
-Vim has two ways to find matches for a pattern: Internal and external. The
+Vim has two ways to find matches for a pattern: internal and external. The
advantage of the internal grep is that it works on all systems and uses the
powerful Vim search patterns. An external grep program can be used when the
Vim grep does not do what you want.
@@ -1023,7 +1023,7 @@ commands can be combined to create a NewGrep command: >
command! -nargs=+ NewGrep execute 'silent grep! <args>' | copen 42
-5.1 using Vim's internal grep
+5.1 Using Vim's internal grep
*:vim* *:vimgrep* *E682* *E683*
:vim[grep][!] /{pattern}/[g][j][f] {file} ...