You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/ISSUE_TEMPLATE/bug_report.yml
+16-44Lines changed: 16 additions & 44 deletions
Original file line number
Diff line number
Diff line change
@@ -16,11 +16,11 @@ body:
16
16
attributes:
17
17
label: "Neovim version"
18
18
description: "Output of `nvim --version`. Please see nvim-tree.lua [minimum required version](https://github.com/kyazdani42/nvim-tree.lua#notice)."
19
-
render: markdown
20
19
placeholder: |
21
20
NVIM v0.6.1
22
21
Build type: Release
23
22
LuaJIT 2.1.0-beta3
23
+
render: text
24
24
validations:
25
25
required: true
26
26
- type: input
@@ -37,13 +37,26 @@ body:
37
37
nvim-tree branch, commit or tag number
38
38
validations:
39
39
required: true
40
+
- type: textarea
41
+
attributes:
42
+
label: "Minimal config"
43
+
description: "Minimal(!) configuration necessary to reproduce the issue.
44
+
45
+
(Right click) save [nvt-min.lua](https://raw.githubusercontent.com/kyazdani42/nvim-tree.lua/master/.github/ISSUE_TEMPLATE/nvt-min.lua) to `/tmp` and run using `nvim -nu /tmp/nvt-min.lua`
46
+
47
+
If _absolutely_ necessary, add plugins and modify the nvim-tree setup at the indicated lines.
48
+
49
+
Paste the contents of your `/tmp/nvt-min.lua` here."
50
+
render: lua
51
+
validations:
52
+
required: true
40
53
- type: textarea
41
54
attributes:
42
55
label: "Steps to reproduce"
43
56
description: "Steps to reproduce using the minimal config provided below."
44
57
placeholder: |
45
-
1. `nvim -nu /tmp/nvt-min.lua`
46
-
2. `:NvimTreeOpen`
58
+
1. nvim -nu /tmp/nvt-min.lua
59
+
2. :NvimTreeOpen
47
60
3. ...
48
61
validations:
49
62
required: true
@@ -55,45 +68,4 @@ body:
55
68
attributes:
56
69
label: "Actual behavior"
57
70
description: "Observed behavior (may optionally include images, videos or a screencast)."
58
-
- type: textarea
59
-
attributes:
60
-
label: "Minimal config"
61
-
description: "Minimal(!) configuration necessary to reproduce the issue, using the latest version. Save this as `/tmp/nvt-min.lua` and run using `nvim -nu /tmp/nvt-min.lua`. If _absolutely_ necessary, add plugins and modify the nvim-tree setup at the indicated lines."
62
-
render: Lua
63
-
value: |
64
-
vim.cmd [[set runtimepath=$VIMRUNTIME]]
65
-
vim.cmd [[set packpath=/tmp/nvt-min/site]]
66
-
local package_root = "/tmp/nvt-min/site/pack"
67
-
local install_path = package_root .. "/packer/start/packer.nvim"
68
-
local function load_plugins()
69
-
require("packer").startup {
70
-
{
71
-
"wbthomason/packer.nvim",
72
-
"kyazdani42/nvim-tree.lua",
73
-
"kyazdani42/nvim-web-devicons",
74
-
-- ADD PLUGINS THAT ARE _NECESSARY_ FOR REPRODUCING THE ISSUE
0 commit comments