-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
155 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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,112 @@ | ||
name: Bug Report | ||
description: File a bug/issue | ||
title: "bug: " | ||
labels: [bug] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Before reporting a bug, make sure to search [existing issues](https://github.com/stevearc/stickybuf.nvim/issues) | ||
- 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. | ||
validations: | ||
required: true | ||
- type: dropdown | ||
attributes: | ||
label: What is the severity of this bug? | ||
options: | ||
- minor (annoyance) | ||
- tolerable (can work around it) | ||
- breaking (some functionality is broken) | ||
- blocking (cannot use plugin) | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: Steps To Reproduce | ||
description: Steps to reproduce the behavior. | ||
placeholder: | | ||
1. nvim -u repro.lua | ||
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: Minimal example file | ||
description: A small example file you are editing that produces the issue | ||
validations: | ||
required: false | ||
- type: textarea | ||
attributes: | ||
label: Minimal init.lua | ||
description: | ||
Minimal `init.lua` to reproduce this issue. Save as `repro.lua` and run with `nvim -u repro.lua` | ||
This uses lazy.nvim (a plugin manager). | ||
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", | ||
"--single-branch", | ||
"https://github.com/folke/lazy.nvim.git", | ||
lazypath, | ||
}) | ||
end | ||
vim.opt.runtimepath:prepend(lazypath) | ||
-- install plugins | ||
local plugins = { | ||
"folke/tokyonight.nvim", | ||
{ | ||
"stevearc/stickybuf.nvim", | ||
opts = {}, | ||
}, | ||
-- add any other plugins here | ||
} | ||
require("lazy").setup(plugins, { | ||
root = root .. "/plugins", | ||
}) | ||
vim.cmd.colorscheme("tokyonight") | ||
-- add anything else here | ||
render: Lua | ||
validations: | ||
required: false | ||
- type: textarea | ||
attributes: | ||
label: Additional context | ||
description: Any additional information or screenshots you would like to provide | ||
validations: | ||
required: false |
This file contains 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,43 @@ | ||
name: Feature Request | ||
description: Submit a feature request | ||
title: "feature request: " | ||
labels: [enhancement] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Before submitting a feature request, make sure to search for [existing requests](https://github.com/stevearc/stickybuf.nvim/issues) | ||
- type: checkboxes | ||
attributes: | ||
label: Did you check existing requests? | ||
options: | ||
- label: I have searched the existing issues | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: Describe the feature | ||
description: A short summary of the feature you want | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: Provide background | ||
description: Describe the reasoning behind why you want the feature. | ||
placeholder: I am trying to do X. My current workflow is Y. | ||
validations: | ||
required: false | ||
- type: dropdown | ||
attributes: | ||
label: What is the significance of this feature? | ||
options: | ||
- nice to have | ||
- strongly desired | ||
- cannot use this plugin without it | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: Additional details | ||
description: Any additional information you would like to provide. Things you've tried, alternatives considered, examples from other plugins, etc. | ||
validations: | ||
required: false |