diff options
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 + |