aboutsummaryrefslogtreecommitdiffstats
path: root/doc/easytags.txt
diff options
context:
space:
mode:
Diffstat (limited to 'doc/easytags.txt')
-rw-r--r--doc/easytags.txt28
1 files changed, 28 insertions, 0 deletions
diff --git a/doc/easytags.txt b/doc/easytags.txt
index 3269541..7579a9c 100644
--- a/doc/easytags.txt
+++ b/doc/easytags.txt
@@ -199,6 +199,34 @@ it won't apply until you restart Vim, so you'll have to set this option in
your |vimrc| script.
-------------------------------------------------------------------------------
+The *g:easytags_auto_update* option
+
+By default the plug-in automatically updates and highlights your tags when you
+stop typing for a moment. If you want to disable automatic updating while
+keeping automatic highlighting enabled you can set this option to false:
+>
+ :let g:easytags_auto_update = 0
+
+If you want to disable automatic updating for a single file you can execute
+the following command while editing the file:
+>
+ :let b:easytags_auto_update = 0
+
+-------------------------------------------------------------------------------
+The *g:easytags_auto_highlight* option
+
+By default the plug-in automatically updates and highlights your tags when you
+stop typing for a moment. If you want to disable automatic highlighting while
+keeping automatic updating enabled you can set this option to false:
+>
+ :let g:easytags_auto_highlight = 0
+
+If you want to disable automatic highlighting for a single file you can
+execute the following command while editing the file:
+>
+ :let b:easytags_auto_highlight = 0
+
+-------------------------------------------------------------------------------
The *g:easytags_autorecurse* option
When the |:UpdateTags| command is executed automatically or without arguments,