vim-patch:7.4.2049

Problem:    There is no way to get a list of the error lists.
Solution:   Add ":chistory" and ":lhistory".

f6acffbe83
This commit is contained in:
lonerover
2017-01-17 15:36:00 +08:00
parent d3b4764dc1
commit 1a06a39488
5 changed files with 94 additions and 10 deletions

View File

@@ -461,6 +461,12 @@ return {
addr_type=ADDR_LINES,
func='ex_checktime',
},
{
command='chistory',
flags=bit.bor(TRLBAR),
addr_type=ADDR_LINES,
func='qf_history',
},
{
command='clist',
flags=bit.bor(BANG, EXTRA, TRLBAR, CMDWIN),
@@ -1399,6 +1405,12 @@ return {
addr_type=ADDR_LINES,
func='ex_helpgrep',
},
{
command='lhistory',
flags=bit.bor(TRLBAR),
addr_type=ADDR_LINES,
func='qf_history',
},
{
command='ll',
flags=bit.bor(RANGE, NOTADR, COUNT, TRLBAR, BANG),