aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--README.md2
-rw-r--r--doc/easytags.txt4
-rw-r--r--plugin/easytags.vim2
3 files changed, 4 insertions, 4 deletions
diff --git a/README.md b/README.md
index d56dad2..cae7d2a 100644
--- a/README.md
+++ b/README.md
@@ -225,7 +225,7 @@ Every time the plug-in executes it will time how long the execution takes and ad
If the `easytags.vim` plug-in fails to highlight your tags and the error message mentions that the pattern is too big, your tags file has grown too large for Vim to be able to highlight all tagged identifiers! I've had this happen to me with 50 KB patterns because I added most of the headers in `/usr/include/` to my tags file. Internally Vim raises the error [E339: Pattern too long] [e339] and unfortunately the only way to avoid this problem once it occurs is to reduce the number of tagged identifiers...
-In my case the solution was to move most of the tags from `/usr/include/` over to project specific tags files which are automatically loaded by Vim when I edit files in different projects because I've set the ['tags' option] ['tags'] as follows:
+In my case the solution was to move most of the tags from `/usr/include/` over to project specific tags files which are automatically loaded by Vim when I edit files in different projects because I've set the ['tags' option] [tags_opt] as follows:
:set tags=./.tags;,~/.vimtags
diff --git a/doc/easytags.txt b/doc/easytags.txt
index 6642511..f8a9ea5 100644
--- a/doc/easytags.txt
+++ b/doc/easytags.txt
@@ -437,8 +437,8 @@ is to reduce the number of tagged identifiers...
In my case the solution was to move most of the tags from '/usr/include/' over
to project specific tags files which are automatically loaded by Vim when I
-edit files in different projects because I've set the ['tags' option] ['tags']
-as follows:
+edit files in different projects because I've set the |'tags'| option as
+follows:
>
:set tags=./.tags;,~/.vimtags
diff --git a/plugin/easytags.vim b/plugin/easytags.vim
index c989783..c61509d 100644
--- a/plugin/easytags.vim
+++ b/plugin/easytags.vim
@@ -12,7 +12,7 @@ if &cp || exists('g:loaded_easytags')
finish
endif
-let g:easytags_version = '2.4.8'
+let g:easytags_version = '2.4.9'
" Configuration defaults and initialization. {{{1