1 # docvim<a name="docvim-docvim" href="#user-content-docvim-docvim"></a>
3 <p align="right"><a name="vim-docvim" href="#user-content-vim-docvim"><code>vim-docvim</code></a></p>
4 ## Intro<a name="docvim-intro" href="#user-content-docvim-intro"></a>
6 vim-docvim provides additional syntax highlighting for Vim script files that contain embedded docvim comments.
8 docvim (the tool, not this plug-in) is a documentation generator that processes those embedded comments and produces documentation in Markdown and Vim "help" formats. To avoid confusion, this document refers to the Vim plug-in as "vim-docvim" and the separate generation tool as "docvim".
10 ## Installation<a name="docvim-installation" href="#user-content-docvim-installation"></a>
12 To install vim-docvim, use your plug-in management system of choice.
14 If you don't have a "plug-in management system of choice", I recommend Pathogen (https://github.com/tpope/vim-pathogen) due to its simplicity and robustness. Assuming that you have Pathogen installed and configured, and that you want to install vim-docvim into `~/.vim/bundle`, you can do so with:
17 git clone https://github.com/wincent/vim-docvim.git ~/.vim/bundle/vim-docvim
20 Alternatively, if you use a Git submodule for each Vim plug-in, you could do the following after `cd`-ing into the top-level of your Git superproject:
23 git submodule add https://github.com/wincent/vim-docvim.git ~/vim/bundle/vim-docvim
27 To generate help tags under Pathogen, you can do so from inside Vim with:
30 :call pathogen#helptags()
33 ## Related<a name="docvim-related" href="#user-content-docvim-related"></a>
35 ### Docvim<a name="docvim-docvim" href="#user-content-docvim-docvim"></a>
37 The Docvim tool itself is a Haskell module, available at:
39 http://hackage.haskell.org/package/docvim
41 The official source code repo is at:
43 http://git.wincent.com/docvim.git
47 - https://github.com/wincent/docvim
48 - https://gitlab.com/wincent/docvim
49 - https://bitbucket.org/ghurrell/docvim
51 ## Website<a name="docvim-website" href="#user-content-docvim-website"></a>
53 The official vim-docvim source code repo is at:
55 http://git.wincent.com/vim-docvim.git
59 - https://github.com/wincent/vim-docvim
60 - https://gitlab.com/wincent/vim-docvim
61 - https://bitbucket.org/ghurrell/vim-docvim
63 Official releases are listed at:
65 http://www.vim.org/scripts/script.php?script_id=[TODO]
67 ## License<a name="docvim-license" href="#user-content-docvim-license"></a>
69 Copyright (c) 2015-present Greg Hurrell
71 Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
73 The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
75 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
77 ## Development<a name="docvim-development" href="#user-content-docvim-development"></a>
79 ### Contributing patches<a name="docvim-contributing-patches" href="#user-content-docvim-contributing-patches"></a>
81 Patches can be sent via mail to greg@hurrell.net, or as GitHub pull requests at: https://github.com/wincent/vim-docvim/pulls
83 ### Cutting a new release<a name="docvim-cutting-a-new-release" href="#user-content-docvim-cutting-a-new-release"></a>
85 At the moment the release process is manual:
87 - Perform final sanity checks and manual testing
88 - Update the <strong>[`docvim-history`](#user-content-docvim-history)</strong> section of the documentation
89 - Verify clean work tree:
98 git tag -s -m "$VERSION release" $VERSION
104 git push origin master --follow-tags
105 git push github master --follow-tags
108 - Produce the release archive:
111 git archive -o vim-docvim-$VERSION.zip HEAD -- .
114 - Upload to http://www.vim.org/scripts/script.php?script_id=[TODO]
116 ## Authors<a name="docvim-authors" href="#user-content-docvim-authors"></a>
118 vim-docvim is written and maintained by Greg Hurrell <greg@hurrell.net>.
120 ## History<a name="docvim-history" href="#user-content-docvim-history"></a>
122 ### 0.1 (not yet released)<a name="docvim-01-not-yet-released" href="#user-content-docvim-01-not-yet-released"></a>