aboutsummaryrefslogtreecommitdiffstats
path: root/plugin
diff options
context:
space:
mode:
authorPeter Odding <peter@peterodding.com>2014-06-29 21:44:34 +0200
committerPeter Odding <peter@peterodding.com>2014-06-29 21:44:34 +0200
commitf651375c7333efda6a768472e1a804f20fa69115 (patch)
tree1a8c8d427783631d0ce6c83fb6ef4521430bad56 /plugin
parent6b4937d312d0cdd2401d8e26e56f754495bd3660 (diff)
downloadvim-easytags-f651375c7333efda6a768472e1a804f20fa69115.tar.gz
Actually enable the automatic commands introduced in 6c7a66349ec :-)
Diffstat (limited to 'plugin')
-rw-r--r--plugin/easytags.vim4
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