diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2023-01-05 10:29:06 +0100 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2023-01-05 10:48:48 +0100 |
commit | c889f754367bdd0783276e74120868e44e6ae863 (patch) | |
tree | 474d0762d52ef5420b0ae05f3d80fdd84df5d0c3 | |
parent | 85eb564bac167c63eadbd6136406ac4863ee30ee (diff) | |
download | rneovim-c889f754367bdd0783276e74120868e44e6ae863.tar.gz rneovim-c889f754367bdd0783276e74120868e44e6ae863.tar.bz2 rneovim-c889f754367bdd0783276e74120868e44e6ae863.zip |
project: rearrange ISSUE_TEMPLATE/bug_report.yml
Problem:
The "system info" fields in the bug report take up a lot of space at the
top. That hides the most relevant part of the bug report. To read the
actual bug, you always have to scroll down.
Solution:
Move the "system info" fields to the bottom.
-rw-r--r-- | .github/ISSUE_TEMPLATE/bug_report.yml | 53 |
1 files changed, 27 insertions, 26 deletions
diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index 11f27dde21..5fd7bc37b6 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -8,6 +8,33 @@ body: value: | _Before reporting:_ search [existing issues](https://github.com/neovim/neovim/issues?q=is%3Aissue+is%3Aopen+label%3Abug) and check the [FAQ](https://github.com/neovim/neovim/wiki/FAQ). Usage questions such as "How do I...?" belong on the [Neovim Discourse](https://neovim.discourse.group/c/7-category/7) and will be closed. + - type: textarea + attributes: + label: "Describe the bug" + description: "Describe the current behavior. May include logs, images, or videos." + validations: + required: true + + - type: textarea + attributes: + label: "Steps to reproduce" + description: | + - For build failures: list the exact steps including CMake flags (if any). + - For startup or shell-related problems: try `env -i TERM=ansi-256color "$(which nvim)"`. + placeholder: | + nvim --clean + :edit foo + yiwp + validations: + required: true + + - type: textarea + attributes: + label: "Expected behavior" + description: "Describe the behavior you expect." + validations: + required: true + - type: input attributes: label: "Neovim version (nvim -v)" @@ -47,29 +74,3 @@ body: placeholder: "Arch User Repository (AUR)" validations: required: true - - - type: textarea - attributes: - label: "How to reproduce the issue" - description: | - - Steps to reproduce using `nvim --clean` ("factory defaults"). - - For build failures: list the exact steps including CMake flags (if any). - - For shell-related problems: try `env -i TERM=ansi-256color "$(which nvim)"`. - placeholder: | - nvim --clean - :edit foo - yiwp - validations: - required: true - - - type: textarea - attributes: - label: "Expected behavior" - description: "Describe the behavior you expect. May include logs, images, or videos." - validations: - required: true - - type: textarea - attributes: - label: "Actual behavior" - validations: - required: true |