From d96e30369206154626bfd5c0bf1150aebe812df5 Mon Sep 17 00:00:00 2001 From: "Jeremy Pallats/starcraft.man" Date: Sat, 20 Feb 2016 17:02:56 -0500 Subject: [PATCH] Fix #416: Add an issue and PR template. --- .github/ISSUE_TEMPLATE.md | 32 ++++++++++++++++++++++++++++++++ .github/PULL_REQUEST_TEMPLATE.md | 8 ++++++++ README.md | 13 +++++++++---- 3 files changed, 49 insertions(+), 4 deletions(-) create mode 100644 .github/ISSUE_TEMPLATE.md create mode 100644 .github/PULL_REQUEST_TEMPLATE.md diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md new file mode 100644 index 0000000..314d138 --- /dev/null +++ b/.github/ISSUE_TEMPLATE.md @@ -0,0 +1,32 @@ + + +Explain the problem here ... + +------------------------------ + + +``` + +``` + + +- Type: + - [ ] Bug + - [ ] Enhancement + - [ ] Feature Request + - [ ] Question +- OS: + - [ ] All/Other + - [ ] Linux + - [ ] OS X + - [ ] Windows +- Vim: + - [ ] Terminal Vim + - [ ] GVim + - [ ] Neovim diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md new file mode 100644 index 0000000..b344187 --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,8 @@ + + +Describe the details of your PR ... diff --git a/README.md b/README.md index 13a3114..0ed6309 100644 --- a/README.md +++ b/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")) ``` +### 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 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 } ``` -### FAQ/Troubleshooting - -See [FAQ/Troubleshooting](https://github.com/junegunn/vim-plug/wiki/faq). - ### Articles - [Writing my own Vim plugin manager](http://junegunn.kr/2013/09/writing-my-own-vim-plugin-manager)