diff options
author | Peter Odding <peter@peterodding.com> | 2014-06-29 21:44:34 +0200 |
---|---|---|
committer | Peter Odding <peter@peterodding.com> | 2014-06-29 21:44:34 +0200 |
commit | f651375c7333efda6a768472e1a804f20fa69115 (patch) | |
tree | 1a8c8d427783631d0ce6c83fb6ef4521430bad56 | |
parent | 6b4937d312d0cdd2401d8e26e56f754495bd3660 (diff) | |
download | vim-easytags-f651375c7333efda6a768472e1a804f20fa69115.tar.gz |
Actually enable the automatic commands introduced in 6c7a66349ec :-)
-rw-r--r-- | plugin/easytags.vim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugin/easytags.vim b/plugin/easytags.vim index 4da7962..324fa81 100644 --- a/plugin/easytags.vim +++ b/plugin/easytags.vim @@ -125,8 +125,8 @@ augroup PluginEasyTags " During :vimgrep each searched buffer triggers an asynchronous tags file " update resulting in races for the tags file. To avoid this we temporarily " disable automatic tags file updates during :vimgrep. - "autocmd QuickFixCmdPre *vimgrep* call xolox#easytags#disable_automatic_updates() - "autocmd QuickFixCmdPost *vimgrep* call xolox#easytags#restore_automatic_updates() + autocmd QuickFixCmdPre *vimgrep* call xolox#easytags#disable_automatic_updates() + autocmd QuickFixCmdPost *vimgrep* call xolox#easytags#restore_automatic_updates() augroup END " Use vim-misc to register an event handler for Vim's CursorHold and |