Searched refs:doautocmd (Results 1 – 19 of 19) sorted by relevance
| /vim-8.2.3635/src/proto/ |
| H A D | autocmd.pro | 35 char_u *set_context_in_autocmd(expand_T *xp, char_u *arg, int doautocmd);
|
| /vim-8.2.3635/src/testdir/ |
| H A D | test_source.vim | 80 doautocmd User UserAutoCmd
|
| H A D | test_cmdline.vim | 889 " completion for the :doautocmd command 890 call feedkeys(":doautocmd User MyCmd a.c\<C-A>\<C-B>\"\<CR>", 'xt') 891 call assert_equal("\"doautocmd User MyCmd a.c\<C-A>", @:) 894 call feedkeys(":doautocmd BufNew,BufEn\<C-A>\<C-B>\"\<CR>", 'xt') 895 call assert_equal("\"doautocmd BufNew,BufEnter", @:) 897 " completion of file name in :doautocmd 900 call feedkeys(":doautocmd BufEnter Xfi\<C-A>\<C-B>\"\<CR>", 'xt') 901 call assert_equal("\"doautocmd BufEnter Xfile1 Xfile2", @:)
|
| H A D | test_menu.vim | 15 doautocmd LoadBufferMenu VimEnter 31 doautocmd LoadBufferMenu VimEnter
|
| H A D | test_autocmd.vim | 409 doautocmd VimEnter 2665 call assert_fails('doautocmd * BufEnter', 'E217:') 2673 autocmd BufEnter Xfile doautocmd BufEnter Xfile 2674 call assert_fails('doautocmd BufEnter Xfile', 'E218:') 2905 doautocmd CursorHold
|
| H A D | test_debugger.vim | 587 \ ':debug doautocmd User TestGlobalFunction', 588 \ ['cmd: doautocmd User TestGlobalFunction'])
|
| H A D | test_vim9_script.vim | 3630 doautocmd TabEnter #comment 3633 doautocmd TabEnter f.x 3637 doautocmd TabEnter f.x #comment 3640 assert_fails('doautocmd Syntax#comment', 'E216:')
|
| H A D | test_terminal.vim | 2028 doautocmd <nomodeline> User UserEvent
|
| H A D | test_vimscript.vim | 6184 doautocmd User x1 6192 doautocmd User x2 6204 doautocmd User x3
|
| H A D | test_quickfix.vim | 876 exe 'doautocmd BufRead ' . substitute(a:name, '\v^test://(.*)', '\1', '')
|
| /vim-8.2.3635/runtime/doc/ |
| H A D | usr_40.txt | 589 :autocmd BufReadPost *.new execute "doautocmd BufReadPost " . expand("<afile>:r") 596 :doautocmd BufReadPost tryout.c 602 ":doautocmd" executes on the current buffer. The ":doautoall" command works 603 like "doautocmd" except it executes on all the buffers.
|
| H A D | autocmd.txt | 400 |User| to be used in combination with ":doautocmd" 1220 ":doautocmd". 1221 Note that when `:doautocmd User MyEvent` is 1479 ":doautocmd" or ":doautoall", or when defining or deleting autocommands. 1534 *:do* *:doau* *:doaut* *:doautocmd* *E217* 1567 Like ":doautocmd", but apply the autocommands to each 1636 : autocmd BufReadPost,FileReadPost *.gz execute ":doautocmd BufReadPost " . expand("%:r")
|
| H A D | index.txt | 1291 |:doautocmd| :do[autocmd] apply autocommands to current buffer
|
| H A D | tags | 2400 :doautocmd autocmd.txt /*:doautocmd*
|
| H A D | eval.txt | 14410 : doautocmd User x 14469 : doautocmd BufWritePost /i/m/p/o/s/s/i/b/l/e
|
| H A D | version7.txt | 7570 Solution: Complete ":doautoall" like ":doautocmd". (Doug Kearns) 12921 Problem: Still read modelines for ":doautocmd".
|
| H A D | version8.txt | 11783 Problem: When ":doautocmd" is used modelines are used even when no
|
| /vim-8.2.3635/src/ |
| H A D | autocmd.c | 2518 int doautocmd) // TRUE for :doauto*, FALSE for :autocmd in set_context_in_autocmd() argument 2556 if (doautocmd) in set_context_in_autocmd()
|
| /vim-8.2.3635/runtime/ |
| H A D | menu.vim | 607 doautocmd filetypedetect BufReadPost
|