Skip to content

Commit a2adadd

Browse files
committed
adjust bug report template
1 parent 0df9838 commit a2adadd

File tree

1 file changed

+55
-1
lines changed

1 file changed

+55
-1
lines changed

.github/ISSUE_TEMPLATE/bug_report.yml

Lines changed: 55 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,8 +111,62 @@ body:
111111
- type: textarea
112112
id: logs
113113
attributes:
114-
label: Relevant log output
114+
label: Log
115115
description: Please copy and paste any relevant log output. These can be generated by launching `osv` with `log = true`. The log is then generated in `:=vim.fn.stdpath('data')`.
116+
placeholder: |
117+
{
118+
arguments = {
119+
adapterID = "nvim-dap",
120+
clientID = "neovim",
121+
clientName = "neovim",
122+
columnsStartAt1 = true,
123+
linesStartAt1 = true,
124+
locale = "en_US",
125+
pathFormat = "path",
126+
supportsProgressReporting = true,
127+
supportsRunInTerminalRequest = true,
128+
supportsStartDebuggingRequest = true,
129+
supportsVariableType = true
130+
},
131+
command = "initialize",
132+
seq = 1,
133+
type = "request"
134+
}
135+
{
136+
body = {
137+
supportTerminateDebuggee = true,
138+
supportsConditionalBreakpoints = true,
139+
supportsConfigurationDoneRequest = true,
140+
supportsExceptionInfoRequest = true,
141+
supportsHitConditionalBreakpoints = true,
142+
supportsSetVariable = true
143+
},
144+
command = "initialize",
145+
request_seq = 1,
146+
seq = 1,
147+
success = true,
148+
type = "response"
149+
}
150+
{
151+
event = "initialized",
152+
seq = 2,
153+
type = "event"
154+
}
155+
{
156+
command = "configurationDone",
157+
seq = 3,
158+
type = "request"
159+
}
160+
{
161+
arguments = {
162+
name = "Attach to running Neovim instance",
163+
request = "attach",
164+
type = "nlua"
165+
},
166+
command = "attach",
167+
seq = 2,
168+
type = "request"
169+
}
116170
render: shell
117171
validations:
118172
required: false

0 commit comments

Comments
 (0)