|
| 1 | +name: Bug Report |
| 2 | +description: File a bug/issue |
| 3 | +title: "bug: " |
| 4 | +labels: [bug] |
| 5 | +body: |
| 6 | + - type: markdown |
| 7 | + attributes: |
| 8 | + value: | |
| 9 | + **Before** reporting an issue, make sure to read the [documentation](https://github.com/ColinKennedy/nvim-best-practices-plugin-template) |
| 10 | + and search [existing issues](https://github.com/ColinKennedy/nvim-best-practices-plugin-template/issues) (even the [closed issues](https://github.com/ColinKennedy/nvim-best-practices-plugin-template/issues?q=is%3Aissue+is%3Aclosed)) |
| 11 | +
|
| 12 | + Usage questions such as ***"How do I...?"*** belong in [Discussions](https://github.com/ColinKennedy/nvim-best-practices-plugin-template/discussions) and will be closed. |
| 13 | + - type: checkboxes |
| 14 | + attributes: |
| 15 | + label: Did you read the documentation and check existing issues? |
| 16 | + description: Make sure you checked and all of the below before submitting an issue |
| 17 | + options: |
| 18 | + - label: I have read all the [`:help plugin-template`](https://github.com/ColinKennedy/nvim-best-practices-plugin-template/blob/main/doc/my-template-docs.txt) documentation |
| 19 | + required: true |
| 20 | + - label: I have updated the plugin to the latest version before submitting this issue |
| 21 | + required: true |
| 22 | + - label: I have searched the [existing issues](https://github.com/ColinKennedy/nvim-best-practices-plugin-template/issues) and [closed issues](https://github.com/ColinKennedy/nvim-best-practices-plugin-template/issues?q=is%3Aissue+is%3Aclosed) issues |
| 23 | + required: true |
| 24 | + - type: input |
| 25 | + attributes: |
| 26 | + label: "Neovim version (nvim -v)" |
| 27 | + placeholder: "0.8.0 commit db1b0ee3b30f" |
| 28 | + validations: |
| 29 | + required: true |
| 30 | + - type: input |
| 31 | + attributes: |
| 32 | + label: "Operating system/version" |
| 33 | + placeholder: "Rocky 9" |
| 34 | + validations: |
| 35 | + required: true |
| 36 | + - type: textarea |
| 37 | + attributes: |
| 38 | + label: Describe the bug |
| 39 | + description: A clear and concise description of what the bug is. Please include any related errors you see in Neovim. |
| 40 | + validations: |
| 41 | + required: true |
| 42 | + - type: textarea |
| 43 | + attributes: |
| 44 | + label: Steps To Reproduce |
| 45 | + description: Steps to reproduce the behavior. |
| 46 | + placeholder: | |
| 47 | + 1. |
| 48 | + 2. |
| 49 | + 3. |
| 50 | + validations: |
| 51 | + required: true |
| 52 | + - type: textarea |
| 53 | + attributes: |
| 54 | + label: Expected Behavior |
| 55 | + description: A concise description of what you expected to happen. |
| 56 | + validations: |
| 57 | + required: true |
| 58 | + - type: textarea |
| 59 | + attributes: |
| 60 | + label: Health |
| 61 | + description: Attach the output of `:checkhealth plugin_template` here |
| 62 | + render: log |
| 63 | + - type: textarea |
| 64 | + attributes: |
| 65 | + label: Log |
| 66 | + description: Please enable logging with `vim.g.plugin_template_configuration = {logging = {level = "debug", use_file = true}}` and attach the contents of `~/.local/share/nvim` here or call `:PluginTemplate copy-logs` |
| 67 | + render: log |
| 68 | + - type: textarea |
| 69 | + attributes: |
| 70 | + label: Repro |
| 71 | + description: Minimal `init.lua` to reproduce this issue. Save as `repro.lua` and run with `nvim -u repro.lua` |
| 72 | + value: | |
| 73 | + vim.env.LAZY_STDPATH = ".repro" |
| 74 | + load(vim.fn.system("curl -s https://raw.githubusercontent.com/folke/lazy.nvim/main/bootstrap.lua"))() |
| 75 | +
|
| 76 | + require("lazy.minit").repro({ |
| 77 | + spec = { |
| 78 | + { |
| 79 | + -- Add anything you need here (configuration, other plugins, etc) |
| 80 | + "ColinKennedy/nvim-best-practices-plugin-template", |
| 81 | + }, |
| 82 | + }) |
| 83 | + render: lua |
| 84 | + validations: |
| 85 | + required: false |
0 commit comments