diff options
author | Peter Odding <peter@peterodding.com> | 2010-07-15 07:08:35 +0200 |
---|---|---|
committer | Peter Odding <peter@peterodding.com> | 2010-07-15 07:08:35 +0200 |
commit | cc411355e4d7083daa45aefdee7ce58d27aefe8f (patch) | |
tree | 8359e71a1315237ac609b6a0da2c9be102a38a55 | |
parent | 889ea860c9b279088fd79da5396138ea654fc65a (diff) | |
download | vim-easytags-cc411355e4d7083daa45aefdee7ce58d27aefe8f.tar.gz |
Mention :helptags in README, other miscellaneous changes
-rw-r--r-- | README.md | 18 | ||||
-rw-r--r-- | autoload.vim | 6 | ||||
-rw-r--r-- | easytags.vim | 6 |
3 files changed, 15 insertions, 15 deletions
@@ -25,12 +25,13 @@ well to see if it would work -- surprisingly well I'm happy to report! Unzip the most recent [ZIP archive] [latest_zip] file inside your Vim profile directory (usually this is `~/.vim` on UNIX and `%USERPROFILE%\vimfiles` on -Windows), restart Vim and try it out: Edit any file type supported by Exuberant -Ctags and within ten seconds the plug-in should create/update your tags file -(`~/.vimtags` on UNIX, `~/_vimtags` on Windows) with the tags defined in the -file you just edited! This means that whatever file you're editing in Vim (as -long as its on the local file system), tags will always be available by the -time you need them! +Windows), restart Vim and execute the command `:helptags ~/.vim/doc` (use +`:helptags ~\vimfiles\doc` instead on Windows). Now try it out: Edit any file +type supported by Exuberant Ctags and within ten seconds the plug-in should +create/update your tags file (`~/.vimtags` on UNIX, `~/_vimtags` on Windows) +with the tags defined in the file you just edited! This means that whatever +file you're editing in Vim (as long as its on the local file system), tags will +always be available by the time you need them! Additionally if the file you just opened is a C, Lua, PHP, Python or Vim source file you should also notice that the function and type names defined in the @@ -192,9 +193,8 @@ directories. If you have questions, bug reports, suggestions, etc. the author can be contacted at <peter@peterodding.com>. The latest version is available at -<http://peterodding.com/code/vim/easytags/> and -<http://github.com/xolox/vim-easytags>. If you like this plug-in please vote -for it on [www.vim.org] [vim_scripts_entry]. +<http://peterodding.com/code/vim/easytags/> and <http://github.com/xolox/vim-easytags>. +If you like this plug-in please vote for it on [www.vim.org] [vim_scripts_entry]. ## License diff --git a/autoload.vim b/autoload.vim index 4722202..bc679a8 100644 --- a/autoload.vim +++ b/autoload.vim @@ -1,7 +1,7 @@ " Vim script -" Maintainer: Peter Odding <peter@peterodding.com> -" Last Change: July 10, 2010 -" URL: http://peterodding.com/code/vim/easytags +" Author: Peter Odding <peter@peterodding.com> +" Last Change: July 15, 2010 +" URL: http://peterodding.com/code/vim/easytags/ let s:script = expand('<sfile>:p:~') diff --git a/easytags.vim b/easytags.vim index de37b5e..e340802 100644 --- a/easytags.vim +++ b/easytags.vim @@ -1,7 +1,7 @@ " Vim plug-in -" Maintainer: Peter Odding <peter@peterodding.com> -" Last Change: July 10, 2010 -" URL: http://peterodding.com/code/vim/easytags +" Author: Peter Odding <peter@peterodding.com> +" Last Change: July 12, 2010 +" URL: http://peterodding.com/code/vim/easytags/ " Requires: Exuberant Ctags (http://ctags.sf.net) " License: MIT " Version: 1.9.6 |