-
Notifications
You must be signed in to change notification settings - Fork 271
feat(issue): add bug_report, feature_request issue template
#1013
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,109 @@ | ||
| name: Bug Report | ||
| description: File a bug / issue. | ||
| title: "BUG: " | ||
| labels: [bug] | ||
| body: | ||
| - type: markdown | ||
| attributes: | ||
| value: | | ||
| **Before** reporting an issue, make sure to read [`:h neo-tree.txt`](https://github.com/nvim-neo-tree/neo-tree.nvim/blob/v2.x/doc/neo-tree.txt) and search [existing issues](https://github.com/nvim-neo-tree/neo-tree.nvim/issues). Usage questions such as ***"How do I...?"*** belong in [Discussions](https://github.com/nvim-neo-tree/neo-tree.nvim/discussions) and will be closed. | ||
| - type: checkboxes | ||
| attributes: | ||
| label: Did you check docs and existing issues? | ||
| description: Make sure you checked all of the below before submitting an issue | ||
| options: | ||
| - label: I have read all the docs. | ||
| required: true | ||
| - label: I have searched the existing issues. | ||
| required: true | ||
| - label: I have searched the existing discussions. | ||
| required: true | ||
| - type: input | ||
| attributes: | ||
| label: "Neovim Version (nvim -v)" | ||
| placeholder: "0.8.0 commit db1b0ee3b30f" | ||
| validations: | ||
| required: true | ||
| - type: input | ||
| attributes: | ||
| label: "Operating System / Version" | ||
| placeholder: "MacOS 11.5" | ||
| validations: | ||
| required: true | ||
| - type: textarea | ||
| attributes: | ||
| label: Describe the Bug | ||
| description: A clear and concise description of what the bug is. Please include any related errors you see in Neovim. | ||
| validations: | ||
| required: true | ||
| - type: textarea | ||
| attributes: | ||
| label: Screenshots, Traceback | ||
| description: Screenshot and traceback if exists. Not required. | ||
| validations: | ||
| required: false | ||
| - type: textarea | ||
| attributes: | ||
| label: Steps to Reproduce | ||
| description: Steps to reproduce the behavior. Describe with the exact commands and keypresses. | ||
| placeholder: | | ||
| 1. | ||
| 2. | ||
| 3. | ||
| validations: | ||
| required: true | ||
| - type: textarea | ||
| attributes: | ||
| label: Expected Behavior | ||
| description: A concise description of what you expected to happen. | ||
| validations: | ||
| required: true | ||
| - type: textarea | ||
| attributes: | ||
| label: Your Configuration | ||
| description: Minimal `init.lua` to reproduce this issue. Save as `repro.lua` and run with `nvim -u repro.lua` | ||
| value: | | ||
| -- DO NOT change the paths and don't remove the colorscheme | ||
| local root = vim.fn.fnamemodify("./.repro", ":p") | ||
|
|
||
| -- set stdpaths to use .repro | ||
| for _, name in ipairs({ "config", "data", "state", "cache" }) do | ||
| vim.env[("XDG_%s_HOME"):format(name:upper())] = root .. "/" .. name | ||
| end | ||
|
|
||
| -- bootstrap lazy | ||
| local lazypath = root .. "/plugins/lazy.nvim" | ||
| if not vim.loop.fs_stat(lazypath) then | ||
| vim.fn.system({ "git", "clone", "--filter=blob:none", "https://github.com/folke/lazy.nvim.git", lazypath, }) | ||
| end | ||
| vim.opt.runtimepath:prepend(lazypath) | ||
|
|
||
| -- install plugins | ||
| local plugins = { | ||
| "folke/tokyonight.nvim", | ||
| -- add any other plugins here | ||
| } | ||
|
|
||
| local neotree_config = { | ||
| "nvim-neo-tree/neo-tree.nvim", | ||
| dependencies = { "MunifTanjim/nui.nvim", "nvim-tree/nvim-web-devicons" }, | ||
| cmd = { "Neotree" }, | ||
| keys = { | ||
| { "<Leader>e", "<Cmd>Neotree<CR>" }, -- change or remove this line if relevant. | ||
| }, | ||
| opts = { | ||
| -- Your config here | ||
| -- ... | ||
| }, | ||
| } | ||
|
|
||
| table.insert(plugins, neotree_config) | ||
| require("lazy").setup(plugins, { | ||
| root = root .. "/plugins", | ||
| }) | ||
|
|
||
| vim.cmd.colorscheme("tokyonight") | ||
| -- add anything else here | ||
| render: Lua | ||
| validations: | ||
| required: false | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,36 @@ | ||
| name: Feature Request | ||
| description: Suggest a new feature. | ||
| title: "FEATURE: " | ||
| labels: [enhancement] | ||
| body: | ||
| - type: checkboxes | ||
| attributes: | ||
| label: Did you check the docs? | ||
| description: Make sure you read all the docs before submitting a feature request. | ||
| options: | ||
| - label: I have read all the docs. | ||
| required: true | ||
| - type: textarea | ||
| validations: | ||
| required: true | ||
| attributes: | ||
| label: Is your feature request related to a problem? Please describe. | ||
| description: A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] | ||
| - type: textarea | ||
| validations: | ||
| required: true | ||
| attributes: | ||
| label: Describe the solution you'd like. | ||
| description: A clear and concise description of what you want to happen. | ||
| - type: textarea | ||
| validations: | ||
| required: false | ||
| attributes: | ||
| label: Describe alternatives you've considered. | ||
| description: A clear and concise description of any alternative solutions or features you've considered. | ||
| - type: textarea | ||
| validations: | ||
| required: false | ||
| attributes: | ||
| label: Additional Context | ||
| description: Add any other context or screenshots about the feature request here. |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.