1 *pinnacle.txt* Highlight group manipulation for Vim *pinnacle*
3 CONTENTS *pinnacle-contents*
5 1. Intro |pinnacle-intro|
6 2. Installation |pinnacle-installation|
7 3. Website |pinnacle-website|
8 4. License |pinnacle-license|
9 5. Development |pinnacle-development|
10 6. Authors |pinnacle-authors|
11 7. History |pinnacle-history|
13 INTRO *pinnacle-intro*
15 Pinnacle provides functions for manipulating |:highlight| groups.
17 INSTALLATION *pinnacle-installation*
19 To install Pinnacle, use your plug-in management system of choice.
21 If you don't have a "plug-in management system of choice", I recommend
22 Pathogen (https://github.com/tpope/vim-pathogen) due to its simplicity and
23 robustness. Assuming that you have Pathogen installed and configured, and
24 that you want to install vim-docvim into `~/.vim/bundle`, you can do so with:
26 git clone https://github.com/wincent/pinnacle.git ~/.vim/bundle/pinnacle
28 Alternatively, if you use a Git submodule for each Vim plug-in, you could do
29 the following after `cd`-ing into the top-level of your Git superproject:
31 git submodule add https://github.com/wincent/pinnacle.git ~/vim/bundle/pinnacle
34 To generate help tags under Pathogen, you can do so from inside Vim with:
36 :call pathogen#helptags()
38 WEBSITE *pinnacle-website*
40 The official Pinnacle source code repo is at:
42 http://git.wincent.com/pinnacle.git
46 - https://github.com/wincent/pinnacle
47 - https://gitlab.com/wincent/pinnacle
48 - https://bitbucket.org/ghurrell/pinnacle
50 Official releases are listed at:
52 http://www.vim.org/scripts/script.php?script_id=[TODO]
54 LICENSE *pinnacle-license*
56 Copyright (c) 2016-present Greg Hurrell
58 Permission is hereby granted, free of charge, to any person obtaining a copy
59 of this software and associated documentation files (the "Software"), to
60 deal in the Software without restriction, including without limitation the
61 rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
62 sell copies of the Software, and to permit persons to whom the Software is
63 furnished to do so, subject to the following conditions:
65 The above copyright notice and this permission notice shall be included in
66 all copies or substantial portions of the Software.
68 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
69 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
70 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
71 AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
72 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
73 FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
76 DEVELOPMENT *pinnacle-development*
78 Contributing patches ~
80 Patches can be sent via mail to greg@hurrell.net, or as GitHub pull requests
81 at: https://github.com/wincent/pinnacle/pulls
83 Cutting a new release ~
85 At the moment the release process is manual:
87 - Perform final sanity checks and manual testing
88 - Update the |pinnacle-history| section of the documentation
89 - Verify clean work tree:
95 git tag -s -m "$VERSION release" $VERSION
99 git push origin master --follow-tags
100 git push github master --follow-tags
102 - Produce the release archive:
104 git archive -o vim-docvim-$VERSION.zip HEAD -- .
106 - Upload to http://www.vim.org/scripts/script.php?script_id=[TODO]
108 AUTHORS *pinnacle-authors*
110 Pinnacle is written and maintained by Greg Hurrell <greg@hurrell.net>.
112 HISTORY *pinnacle-history*
114 0.1 (30 March 2016) ~