Skip to content

Commit 5207365

Browse files
committed
Fix broken link in README
1 parent 2589d58 commit 5207365

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ Every time the plug-in executes it will time how long the execution takes and ad
225225

226226
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...
227227

228-
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:
228+
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:
229229

230230
:set tags=./.tags;,~/.vimtags
231231

doc/easytags.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -437,8 +437,8 @@ is to reduce the number of tagged identifiers...
437437

438438
In my case the solution was to move most of the tags from '/usr/include/' over
439439
to project specific tags files which are automatically loaded by Vim when I
440-
edit files in different projects because I've set the ['tags' option] ['tags']
441-
as follows:
440+
edit files in different projects because I've set the |'tags'| option as
441+
follows:
442442
>
443443
:set tags=./.tags;,~/.vimtags
444444

plugin/easytags.vim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ if &cp || exists('g:loaded_easytags')
1212
finish
1313
endif
1414

15-
let g:easytags_version = '2.4.8'
15+
let g:easytags_version = '2.4.9'
1616

1717
" Configuration defaults and initialization. {{{1
1818

0 commit comments

Comments
 (0)