comparison runtime/doc/autocmd.txt @ 161:6df0106fc595

updated for version 7.0049
author vimboss
date Mon, 07 Feb 2005 22:01:03 +0000
parents 8ecb0db93e9a
children 4d9eabb1396e
comparison
equal deleted inserted replaced
160:7c0820eed232 161:6df0106fc595
1 *autocmd.txt* For Vim version 7.0aa. Last change: 2005 Jan 26 1 *autocmd.txt* For Vim version 7.0aa. Last change: 2005 Feb 07
2 2
3 3
4 VIM REFERENCE MANUAL by Bram Moolenaar 4 VIM REFERENCE MANUAL by Bram Moolenaar
5 5
6 6
322 *FuncUndefined* 322 *FuncUndefined*
323 FuncUndefined When a user function is used but it isn't 323 FuncUndefined When a user function is used but it isn't
324 defined. Useful for defining a function only 324 defined. Useful for defining a function only
325 when it's used. Both <amatch> and <afile> are 325 when it's used. Both <amatch> and <afile> are
326 set to the name of the function. 326 set to the name of the function.
327 See |autoload-functions|.
327 *CursorHold* 328 *CursorHold*
328 CursorHold When the user doesn't press a key for the time 329 CursorHold When the user doesn't press a key for the time
329 specified with 'updatetime'. Not re-triggered 330 specified with 'updatetime'. Not re-triggered
330 until the user has pressed a key (i.e. doesn't 331 until the user has pressed a key (i.e. doesn't
331 fire every 'updatetime' ms if you leave Vim to 332 fire every 'updatetime' ms if you leave Vim to
518 *TermResponse* 519 *TermResponse*
519 TermResponse After the response to |t_RV| is received from 520 TermResponse After the response to |t_RV| is received from
520 the terminal. The value of |v:termresponse| 521 the terminal. The value of |v:termresponse|
521 can be used to do things depending on the 522 can be used to do things depending on the
522 terminal version. 523 terminal version.
524 QuickFixCmdPre *QuickFixCmdPre*
525 Before a quickfix command is run (|:make|,
526 |:grep|, |:grepadd|, |:vimgrep|,
527 |:vimgrepadd|). The pattern is matched against
528 the command being run. When |:grep| is used
529 but 'grepprg' is set to "internal" it still
530 matches "grep".
531 This command cannot be used to set the
532 'makeprg' and 'grepprg' variables.
533 If this command causes an error, the quickfix
534 command is not executed.
535 QuickFixCmdPost *QuickFixCmdPost*
536 like QuickFixCmdPre, but after a quickfix
537 command is run.
523 *UserGettingBored* 538 *UserGettingBored*
524 UserGettingBored When the user hits CTRL-C. Just kidding! :-) 539 UserGettingBored When the user hits CTRL-C. Just kidding! :-)
525 *User* 540 *User*
526 User Never executed automatically. To be used for 541 User Never executed automatically. To be used for
527 autocommands that are only executed with 542 autocommands that are only executed with