diff options
author | Bram Moolenaar <Bram@vim.org> | 2005-02-07 22:01:03 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2005-02-07 22:01:03 +0000 |
commit | 7c62692d430af7313d52257895cfa8298676b6f6 (patch) | |
tree | e29d1348de49aa33b8423ed2290002e39c7a0d1c /runtime/doc/autocmd.txt | |
parent | f97ca8f0665f4604f7778ea709573d920ab83240 (diff) | |
download | vim-git-7c62692d430af7313d52257895cfa8298676b6f6.tar.gz |
updated for version 7.0049
Diffstat (limited to 'runtime/doc/autocmd.txt')
-rw-r--r-- | runtime/doc/autocmd.txt | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/runtime/doc/autocmd.txt b/runtime/doc/autocmd.txt index 2b7edf5ec..c815f362a 100644 --- a/runtime/doc/autocmd.txt +++ b/runtime/doc/autocmd.txt @@ -1,4 +1,4 @@ -*autocmd.txt* For Vim version 7.0aa. Last change: 2005 Jan 26 +*autocmd.txt* For Vim version 7.0aa. Last change: 2005 Feb 07 VIM REFERENCE MANUAL by Bram Moolenaar @@ -324,6 +324,7 @@ FuncUndefined When a user function is used but it isn't defined. Useful for defining a function only when it's used. Both <amatch> and <afile> are set to the name of the function. + See |autoload-functions|. *CursorHold* CursorHold When the user doesn't press a key for the time specified with 'updatetime'. Not re-triggered @@ -520,6 +521,20 @@ TermResponse After the response to |t_RV| is received from the terminal. The value of |v:termresponse| can be used to do things depending on the terminal version. +QuickFixCmdPre *QuickFixCmdPre* + Before a quickfix command is run (|:make|, + |:grep|, |:grepadd|, |:vimgrep|, + |:vimgrepadd|). The pattern is matched against + the command being run. When |:grep| is used + but 'grepprg' is set to "internal" it still + matches "grep". + This command cannot be used to set the + 'makeprg' and 'grepprg' variables. + If this command causes an error, the quickfix + command is not executed. +QuickFixCmdPost *QuickFixCmdPost* + like QuickFixCmdPre, but after a quickfix + command is run. *UserGettingBored* UserGettingBored When the user hits CTRL-C. Just kidding! :-) *User* |