Skip to content

Commit 12dbf2c

Browse files
Convert Language Service issue template to github issue forms template (#9578)
1 parent 6a97dd8 commit 12dbf2c

File tree

2 files changed

+86
-65
lines changed

2 files changed

+86
-65
lines changed

.github/ISSUE_TEMPLATE/language-service.md

Lines changed: 0 additions & 65 deletions
This file was deleted.
Lines changed: 86 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,86 @@
1+
name: Bug Report - Language Service
2+
description: Create a bug report for IntelliSense, autocomplete, code editing, code navigation, etc.
3+
body:
4+
- type: markdown
5+
attributes:
6+
value: |
7+
### Is there an existing issue for this?
8+
Please search our [existing issues](https://github.com/microsoft/vscode-cpptools/issues) to see if an issue already exists for the bug you encountered.
9+
10+
Please also review our [documentation](https://code.visualstudio.com/docs/languages/cpp) and [FAQs](https://code.visualstudio.com/docs/cpp/faq-cpp).
11+
- type: textarea
12+
attributes:
13+
label: Environment
14+
description: |
15+
Please provide the information for the following:
16+
- OS and Version
17+
- VS Code Version
18+
- C/C++ Extension Version
19+
- Other extensions you installed (and if the issue persists after disabling them)
20+
- If using SSH remote, specify OS of remote machine
21+
- A clear and concise description of what the bug is, including information about the workspace (i.e. is the workspace a single project or multiple projects, size of the project, etc).
22+
value: |
23+
- OS and Version:
24+
- VS Code Version:
25+
- C/C++ Extension Version:
26+
- Other extensions you installed (and if the issue persists after disabling them):
27+
- If using SSH remote, specify OS of remote machine:
28+
- A clear and concise description of what the bug is, including information about the workspace (i.e. is the workspace a single project or multiple projects, size of the project, etc).
29+
validations:
30+
required: true
31+
- type: textarea
32+
attributes:
33+
label: Bug Summary and Steps to Reproduce
34+
description: |
35+
Please describe the language service issue or language service feature that is not working as expected.
36+
37+
Include clear steps on how to reproduce the issue.
38+
value: |
39+
Bug Summary:
40+
41+
42+
Steps to reproduce:
43+
1. Go to '...'
44+
2. Click on '....'
45+
3. Scroll down to '....'
46+
4. See error
47+
validations:
48+
required: true
49+
- type: textarea
50+
attributes:
51+
label: Expected behavior
52+
description: A clear and concise description of what you expected to happen.
53+
validations:
54+
required: false
55+
- type: textarea
56+
attributes:
57+
label: Code sample and Logs
58+
description: |
59+
Please provide code sample, your c_cpp_properties.json and logs:
60+
- Code sample
61+
- Configurations in `c_cpp_properties.json`
62+
- Logs from running `C/C++: Log Diagnostics` from the VS Code command palette
63+
- Logs from [the language server logging](https://code.visualstudio.com/docs/cpp/enable-logging-cpp#_enable-logging-for-the-language-server)
64+
render: shell
65+
validations:
66+
required: true
67+
- type: textarea
68+
attributes:
69+
label: Screenshots
70+
description: If applicable, add screenshots to help explain your problem.
71+
validations:
72+
required: false
73+
- type: textarea
74+
attributes:
75+
label: Additional context
76+
description: |
77+
Providing call stacks:
78+
For bugs like crashes, deadlocks, infinite loops, etc. that we are not able to repro and for which the call stack may be useful, please attach a debugger and/or create a dmp and provide the call stacks. Windows binaries have symbols available in VS Code by setting your "symbolSearchPath" to "https://msdl.microsoft.com/download/symbols".
79+
80+
Instructions for attaching debugger to language service process:
81+
https://github.com/microsoft/vscode-cpptools/wiki/Attaching-debugger-to-cpptools-or-cpptools%E2%80%90srv.
82+
83+
Performance analysis:
84+
For a performance issue see instructions at https://github.com/microsoft/vscode-cpptools/wiki/Troubleshooting-Performance-Issues.
85+
validations:
86+
required: false

0 commit comments

Comments
 (0)