mirror of
https://github.com/junegunn/vim-plug.git
synced 2024-12-19 10:35:38 -07:00
Merge pull request #420 from starcraftman/issue_template
Fix #416: Add an issue and PR template.
This commit is contained in:
commit
31b26aa266
32
.github/ISSUE_TEMPLATE.md
vendored
Normal file
32
.github/ISSUE_TEMPLATE.md
vendored
Normal file
@ -0,0 +1,32 @@
|
|||||||
|
<!--
|
||||||
|
### Before Submitting
|
||||||
|
|
||||||
|
- You checked the [faq](https://github.com/junegunn/vim-plug/wiki/faq) for common problems.
|
||||||
|
- Check your [requirements](https://github.com/junegunn/vim-plug/wiki/requirements) are satisfied.
|
||||||
|
- You are not going to suggest vim-plug manage itself like Vundle, see #240, #364, #367 ...
|
||||||
|
-->
|
||||||
|
|
||||||
|
Explain the problem here ...
|
||||||
|
|
||||||
|
------------------------------
|
||||||
|
|
||||||
|
<!-- Put the contents of `:version` below -->
|
||||||
|
```
|
||||||
|
|
||||||
|
```
|
||||||
|
|
||||||
|
<!-- Check all that apply. -->
|
||||||
|
- Type:
|
||||||
|
- [ ] Bug
|
||||||
|
- [ ] Enhancement
|
||||||
|
- [ ] Feature Request
|
||||||
|
- [ ] Question
|
||||||
|
- OS:
|
||||||
|
- [ ] All/Other
|
||||||
|
- [ ] Linux
|
||||||
|
- [ ] OS X
|
||||||
|
- [ ] Windows
|
||||||
|
- Vim:
|
||||||
|
- [ ] Terminal Vim
|
||||||
|
- [ ] GVim
|
||||||
|
- [ ] Neovim
|
8
.github/PULL_REQUEST_TEMPLATE.md
vendored
Normal file
8
.github/PULL_REQUEST_TEMPLATE.md
vendored
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
<!-- ## Before Submitting
|
||||||
|
|
||||||
|
- You made sure the existing tests/travis build works.
|
||||||
|
- You made sure any new features were tested where appropriate.
|
||||||
|
- You checked a similar feature wasn't already turned down by searching issues & PRs.
|
||||||
|
-->
|
||||||
|
|
||||||
|
Describe the details of your PR ...
|
13
README.md
13
README.md
@ -49,6 +49,15 @@ $uri = 'https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim'
|
|||||||
(New-Object Net.WebClient).DownloadFile($uri, $ExecutionContext.SessionState.Path.GetUnresolvedProviderPathFromPSPath("~\vimfiles\autoload\plug.vim"))
|
(New-Object Net.WebClient).DownloadFile($uri, $ExecutionContext.SessionState.Path.GetUnresolvedProviderPathFromPSPath("~\vimfiles\autoload\plug.vim"))
|
||||||
```
|
```
|
||||||
|
|
||||||
|
### Getting Help
|
||||||
|
|
||||||
|
- See the [requirements] page for debugging information & tested configurations.
|
||||||
|
- See the [FAQ] for common problems and questions.
|
||||||
|
- Create an [issue](https://github.com/junegunn/vim-plug/issues/new).
|
||||||
|
|
||||||
|
[FAQ]: https://github.com/junegunn/vim-plug/wiki/faq
|
||||||
|
[requirements]: https://github.com/junegunn/vim-plug/wiki/requirements
|
||||||
|
|
||||||
### Usage
|
### Usage
|
||||||
|
|
||||||
Add a vim-plug section to your `~/.vimrc` (or `~/.config/nvim/init.vim` for Neovim):
|
Add a vim-plug section to your `~/.vimrc` (or `~/.config/nvim/init.vim` for Neovim):
|
||||||
@ -226,10 +235,6 @@ let g:fzf_install = 'yes | ./install'
|
|||||||
Plug 'junegunn/fzf', { 'do': g:fzf_install }
|
Plug 'junegunn/fzf', { 'do': g:fzf_install }
|
||||||
```
|
```
|
||||||
|
|
||||||
### FAQ/Troubleshooting
|
|
||||||
|
|
||||||
See [FAQ/Troubleshooting](https://github.com/junegunn/vim-plug/wiki/faq).
|
|
||||||
|
|
||||||
### Articles
|
### Articles
|
||||||
|
|
||||||
- [Writing my own Vim plugin manager](http://junegunn.kr/2013/09/writing-my-own-vim-plugin-manager)
|
- [Writing my own Vim plugin manager](http://junegunn.kr/2013/09/writing-my-own-vim-plugin-manager)
|
||||||
|
Loading…
Reference in New Issue
Block a user