diff options
author | Bram Moolenaar <Bram@vim.org> | 2016-07-16 16:54:24 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2016-07-16 16:54:24 +0200 |
commit | f6acffbe83e622542d9fdf3066f51933e46e4954 (patch) | |
tree | 70664752ad37e9760fa63ce2c0f432896022628c /src/ex_cmds.h | |
parent | a06ecab7a5159e744448ace731036f0dc5f87dd4 (diff) | |
download | vim-git-f6acffbe83e622542d9fdf3066f51933e46e4954.tar.gz |
patch 7.4.2049v7.4.2049
Problem: There is no way to get a list of the error lists.
Solution: Add ":chistory" and ":lhistory".
Diffstat (limited to 'src/ex_cmds.h')
-rw-r--r-- | src/ex_cmds.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/ex_cmds.h b/src/ex_cmds.h index f57adc0db..eb6eb25b7 100644 --- a/src/ex_cmds.h +++ b/src/ex_cmds.h @@ -310,6 +310,9 @@ EX(CMD_checkpath, "checkpath", ex_checkpath, EX(CMD_checktime, "checktime", ex_checktime, RANGE|NOTADR|BUFNAME|COUNT|EXTRA|TRLBAR, ADDR_LINES), +EX(CMD_chistory, "chistory", qf_history, + TRLBAR, + ADDR_LINES), EX(CMD_clist, "clist", qf_list, BANG|EXTRA|TRLBAR|CMDWIN, ADDR_LINES), @@ -784,6 +787,9 @@ EX(CMD_lgrepadd, "lgrepadd", ex_make, EX(CMD_lhelpgrep, "lhelpgrep", ex_helpgrep, EXTRA|NOTRLCOM|NEEDARG, ADDR_LINES), +EX(CMD_lhistory, "lhistory", qf_history, + TRLBAR, + ADDR_LINES), EX(CMD_ll, "ll", ex_cc, RANGE|NOTADR|COUNT|TRLBAR|BANG, ADDR_LINES), |