From 5207365adaf6c62785ab336ec865428155c8e3b6 Mon Sep 17 00:00:00 2001 From: Peter Odding Date: Mon, 27 Jun 2011 03:54:07 +0200 Subject: Fix broken link in README --- README.md | 2 +- doc/easytags.txt | 4 ++-- plugin/easytags.vim | 2 +- 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 -- cgit v1.2.3