diff options
-rw-r--r-- | README.md | 2 | ||||
-rw-r--r-- | autoload/xolox/easytags.vim | 2 | ||||
-rw-r--r-- | doc/easytags.txt | 4 |
3 files changed, 7 insertions, 1 deletions
@@ -70,6 +70,8 @@ In version 3.5 of the vim-easytags plug-in support for asynchronous tags file up By setting this option to true (1) you enable asynchronous tags file updates. Good luck! ;-) +Note that asynchronous updates on Windows currently require the installation of my [vim-shell] [shell] plug-in (for obscure technical reasons that I want to fix but don't know how yet). + ### The `g:easytags_languages` option Exuberant Ctags supports many languages and can be extended via regular expression patterns, but for some languages separate tools with ctags-compatible output exist (e.g. [jsctags] [jsctags] for Javascript). To use these, the executable and its arguments must be configured: diff --git a/autoload/xolox/easytags.vim b/autoload/xolox/easytags.vim index 4c67c4c..def6dbf 100644 --- a/autoload/xolox/easytags.vim +++ b/autoload/xolox/easytags.vim @@ -1,6 +1,6 @@ " Vim script " Author: Peter Odding <peter@peterodding.com> -" Last Change: July 1, 2014 +" Last Change: July 8, 2014 " URL: http://peterodding.com/code/vim/easytags/ let g:xolox#easytags#version = '3.5' diff --git a/doc/easytags.txt b/doc/easytags.txt index 098b19a..b28150f 100644 --- a/doc/easytags.txt +++ b/doc/easytags.txt @@ -199,6 +199,10 @@ gathered some feedback I definitely want to make this the default mode. By setting this option to true (1) you enable asynchronous tags file updates. Good luck! ;-) +Note that asynchronous updates on Windows currently require the installation of +my vim-shell [12] plug-in (for obscure technical reasons that I want to fix but +don't know how yet). + ------------------------------------------------------------------------------- The *g:easytags_languages* option |