From 88e31471818e9a29a8a20a0ee61360cfd7bdc1cd Mon Sep 17 00:00:00 2001 From: Junegunn Choi Date: Fri, 22 May 2026 22:40:23 +0900 Subject: [PATCH] Renew issue template --- .github/ISSUE_TEMPLATE.md | 37 -------------------- .github/ISSUE_TEMPLATE/issue.yml | 59 ++++++++++++++++++++++++++++++++ 2 files changed, 59 insertions(+), 37 deletions(-) delete mode 100644 .github/ISSUE_TEMPLATE.md create mode 100644 .github/ISSUE_TEMPLATE/issue.yml diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md deleted file mode 100644 index b3cb239..0000000 --- a/.github/ISSUE_TEMPLATE.md +++ /dev/null @@ -1,37 +0,0 @@ - - -Explain the problem here ... - ------------------------------- - - -``` - -``` - - -``` - -``` - - -- Type: - - [ ] Bug - - [ ] Enhancement - - [ ] Feature Request - - [ ] Question -- OS: - - [ ] All/Other - - [ ] Linux - - [ ] macOS - - [ ] Windows -- Vim: - - [ ] Terminal Vim - - [ ] GVim - - [ ] Neovim diff --git a/.github/ISSUE_TEMPLATE/issue.yml b/.github/ISSUE_TEMPLATE/issue.yml new file mode 100644 index 0000000..a91c17b --- /dev/null +++ b/.github/ISSUE_TEMPLATE/issue.yml @@ -0,0 +1,59 @@ +name: Issue +description: File an issue +body: + - type: markdown + attributes: + value: | + ### 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. + + - type: textarea + id: description + attributes: + label: Description + placeholder: Explain the problem here + + - type: textarea + id: plug-block + attributes: + label: Plug block + description: Paste your Plug block (from `call plug#begin()` to `call plug#end()`) + render: vim + + - type: textarea + id: version + attributes: + label: ":version" + description: Paste the contents of `:version` below + render: text + + - type: checkboxes + id: type + attributes: + label: Type + options: + - label: Bug + - label: Enhancement + - label: Feature Request + - label: Question + + - type: checkboxes + id: os + attributes: + label: OS + options: + - label: All/Other + - label: Linux + - label: macOS + - label: Windows + + - type: checkboxes + id: vim + attributes: + label: Vim + options: + - label: Terminal Vim + - label: GVim + - label: Neovim