diff options
| author | Justin M. Keyes <justinkz@gmail.com> | 2019-06-30 00:09:45 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-06-30 00:09:45 +0200 |
| commit | 2ef6f28e11e1ca4804896d62353ebee127ffa38b (patch) | |
| tree | 536c5005f6f1ee4fae6701c93165c6b4a9325737 /.github | |
| parent | 52fced6090aaf9c633e613e5fd46f0793705f22c (diff) | |
| download | rneovim-2ef6f28e11e1ca4804896d62353ebee127ffa38b.tar.gz rneovim-2ef6f28e11e1ca4804896d62353ebee127ffa38b.tar.bz2 rneovim-2ef6f28e11e1ca4804896d62353ebee127ffa38b.zip | |
doc [ci skip] #10177
ref #10278 #10279 #10353
Diffstat (limited to '.github')
| -rw-r--r-- | .github/FUNDING.yml | 1 | ||||
| -rw-r--r-- | .github/ISSUE_TEMPLATE/bug_report.md | 29 | ||||
| -rw-r--r-- | .github/ISSUE_TEMPLATE/feature_request.md | 27 |
3 files changed, 57 insertions, 0 deletions
diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml new file mode 100644 index 0000000000..50ef4e6897 --- /dev/null +++ b/.github/FUNDING.yml @@ -0,0 +1 @@ +custom: https://salt.bountysource.com/teams/neovim diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md new file mode 100644 index 0000000000..fc8bc230fd --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -0,0 +1,29 @@ +--- +name: Bug report +about: Report a problem in Nvim +title: '' +labels: bug + +--- + +<!-- Before reporting: search existing issues and check the FAQ. --> + +- `nvim --version`: +- `vim -u DEFAULTS` (version: ) behaves differently? +- Operating system/version: +- Terminal name/version: +- `$TERM`: + +### Steps to reproduce using `nvim -u NORC` + +``` +nvim -u NORC +# Alternative for shell-related problems: +# env -i TERM=ansi-256color "$(which nvim)" + +``` + +### Actual behaviour + +### Expected behaviour + diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md new file mode 100644 index 0000000000..928cde894c --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -0,0 +1,27 @@ +--- +name: Feature request +about: Request an enhancement for Nvim +title: '' +labels: enhancement + +--- + +<!-- Before reporting: search existing issues and check the FAQ. --> + +- `nvim --version`: +- `vim -u DEFAULTS` (version: ) behaves differently? +- Operating system/version: +- Terminal name/version: +- `$TERM`: + +### Steps to reproduce using `nvim -u NORC` + +``` +nvim -u NORC + +``` + +### Actual behaviour + +### Expected behaviour + |