mirror of
https://github.com/neovim/neovim.git
synced 2026-02-21 18:01:17 +10:00
docs: fix issue query in github templates Problem: Error "Filter contains 1 issue: Invalid value enhancement for label" when clicking on the "existing feature requests" links in the github feature template or github lsp bug template. Solution: Update the queries to use the new type:Enhancement categorization instead of the old label:enhancement system. Similar to #36107.
25 lines
880 B
YAML
25 lines
880 B
YAML
name: Feature request
|
|
description: Request an enhancement for Nvim
|
|
type: 'enhancement'
|
|
body:
|
|
|
|
- type: markdown
|
|
attributes:
|
|
value: |
|
|
Before requesting: search [existing feature requests](https://github.com/neovim/neovim/issues?q=state%3Aopen%20type%3AEnhancement) and check the [FAQ](https://neovim.io/doc/user/faq.html).
|
|
|
|
- type: textarea
|
|
attributes:
|
|
label: "Problem"
|
|
description: "Describe the problem to be solved. Include references to other projects (Vim, Emacs, etc.) if relevant."
|
|
placeholder: "No smurf icons available. Smurfs are useful because ..."
|
|
validations:
|
|
required: true
|
|
|
|
- type: textarea
|
|
attributes:
|
|
label: "Expected behavior"
|
|
description: "Describe what the new feature or behavior would look like. How does it solve the problem? Is it worth the cost?"
|
|
validations:
|
|
required: true
|