diff options
author | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2021-01-01 04:47:35 -0500 |
---|---|---|
committer | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2021-01-01 04:58:05 -0500 |
commit | d7b577d6ab38da8f199a616707a666c43e252ce3 (patch) | |
tree | 1b1b17d7d365223453471bc1b72a1b23dc679e60 /runtime | |
parent | d1608f7503512b37650522cf5c8a3dce7add5e3b (diff) | |
download | rneovim-d7b577d6ab38da8f199a616707a666c43e252ce3.tar.gz rneovim-d7b577d6ab38da8f199a616707a666c43e252ce3.tar.bz2 rneovim-d7b577d6ab38da8f199a616707a666c43e252ce3.zip |
vim-patch:8.1.1281: cannot specify a count with :chistory
Problem: Cannot specify a count with :chistory.
Solution: Add a count to :chistory and :lhistory. (Yegappan Lakshmanan,
closes vim/vim#4344)
https://github.com/vim/vim/commit/8ffc7c8b5f004971cb6f2bdcfbe4f7123cce717c
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/doc/quickfix.txt | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/runtime/doc/quickfix.txt b/runtime/doc/quickfix.txt index 6ed79debf4..eb66d802ec 100644 --- a/runtime/doc/quickfix.txt +++ b/runtime/doc/quickfix.txt @@ -836,14 +836,19 @@ lists. They set one of the existing error lists as the current one. the current window instead of the quickfix list. *:chistory* *:chi* -:chi[story] Show the list of error lists. The current list is +:[count]chi[story] Show the list of error lists. The current list is marked with ">". The output looks like: error list 1 of 3; 43 errors ~ > error list 2 of 3; 0 errors ~ error list 3 of 3; 15 errors ~ + When [count] is given, then the count'th quickfix + list is made the current list. Example: > + " Make the 4th quickfix list current + :4chistory +< *:lhistory* *:lhi* -:lhi[story] Show the list of location lists, otherwise like +:[count]lhi[story] Show the list of location lists, otherwise like `:chistory`. When adding a new error list, it becomes the current list. |