aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorPeter Odding <peter@peterodding.com>2013-04-30 23:37:17 +0200
committerPeter Odding <peter@peterodding.com>2013-04-30 23:37:17 +0200
commit1aae392a30ed478f706c2e19e15df858991adb79 (patch)
tree7340b163c8690eb24765eccebf0d0eac11b5e8f3 /README.md
parentc455d6e1beae13ccf2ddee925a5f9ab2008ef125 (diff)
downloadvim-easytags-1aae392a30ed478f706c2e19e15df858991adb79.tar.gz
Don't try to use dynamic tags files for non-writable directories (issue #29)
This fixes the problem described here: https://github.com/xolox/vim-easytags/issues/29
Diffstat (limited to 'README.md')
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index c8af518..51b0ab4 100644
--- a/README.md
+++ b/README.md
@@ -91,7 +91,7 @@ By default `:UpdateTags` only writes to the global tags file, but it can be conf
You can change the name of the tags file, the important thing is that it's relative to your working directory or the buffer (using a leading `./`). When `g:easytags_dynamic_files` is set to 1 the easytags plug-in will write to the first existing tags file seen by Vim (based on the ['tags' option] [tags_opt]). In other words: If a project specific tags file is found it will be used, otherwise the plug-in falls back to the global tags file (or a file type specific tags file).
-If you set `g:easytags_dynamic_files` to 2 the easytags plug-in will automatically create project specific tags based on the first name in the 'tags' option. This disables the global tags file and file type specific tags files.
+If you set `g:easytags_dynamic_files` to 2 the easytags plug-in will automatically create project specific tags based on the first name in the 'tags' option. In this mode the the global tags file or file type specific tags files are only used for directories where you don't have write permissions.
The ['tags' option] [tags_opt] is reevaluated each time the plug-in runs, so which tags file is selected can differ depending on the buffer and working directory.