1name: Crash Report
2description: Zed is Crashing or Hanging
3type: "Crash"
4body:
5 - type: textarea
6 attributes:
7 label: Summary
8 description: Summarize the issue with detailed reproduction steps
9 value: |
10 <!-- Begin your issue with a one sentence summary -->
11 SUMMARY_SENTENCE_HERE
12
13 ### Description
14 <!-- Include all steps necessary to reproduce from a clean Zed installation. Be verbose -->
15 Steps to trigger the problem:
16 1.
17 2.
18 3.
19
20 Actual Behavior:
21 Expected Behavior:
22
23 validations:
24 required: true
25 - type: textarea
26 id: environment
27 attributes:
28 label: Zed Version and System Specs
29 description: 'Open Zed, and in the command palette select "zed: copy system specs into clipboard"'
30 placeholder: |
31 Output of "zed: copy system specs into clipboard"
32 validations:
33 required: true
34 - type: textarea
35 attributes:
36 label: If applicable, attach your `Zed.log` file to this issue.
37 description: |
38 macOS: `~/Library/Logs/Zed/Zed.log`
39 Windows: `C:\Users\YOU\AppData\Local\Zed\logs\Zed.log`
40 Linux: `~/.local/share/zed/logs/Zed.log` or $XDG_DATA_HOME
41 If you only need the most recent lines, you can run the `zed: open log` command palette action to see the last 1000.
42 value: |
43 <details><summary>Zed.log</summary>
44
45 <!-- Paste your log inside the code block. -->
46 ```log
47
48 ```
49
50 </details>
51 validations:
52 required: false