2.crash-report.yml

 1name: Report a crash
 2description: Zed is crashing or freezing or hanging.
 3type: Crash
 4body:
 5  - type: textarea
 6    attributes:
 7      label: Reproduction steps
 8      description: A step-by-step description of how to reproduce the crash from a **clean Zed install**. **Be verbose**. **Issues with insufficient detail may be summarily closed**.
 9      placeholder: |
10        1. Start Zed
11        2. Perform an action
12        3. Zed crashes
13    validations:
14      required: true
15  - type: textarea
16    attributes:
17      label: Current vs. Expected behavior
18      description: |
19        Go into depth about what actions you’re performing in Zed to trigger the crash. If Zed crashes before it loads any windows, make sure to mention that. Again, **be verbose**.
20
21        **Skipping this/failure to provide complete information will result in the issue being closed.**
22      placeholder: "Based on my reproduction steps above, when I perform said action, I expect this to happen, but instead Zed crashes."
23    validations:
24      required: true
25  - type: textarea
26    attributes:
27      label: Zed version and system specs
28      description: |
29        Open the command palette in Zed, then type “zed: copy system specs into clipboard”. **Skipping this/failure to provide complete information will result in the issue being closed**.
30      placeholder: |
31        Zed: v0.215.0 (Zed Nightly bfe141ea79aa4984028934067ba75c48d99136ae)
32        OS: macOS 15.1
33        Memory: 36 GiB
34        Architecture: aarch64
35    validations:
36      required: true
37  - type: textarea
38    attributes:
39      label: If applicable, attach your Zed log file to this issue
40      description: |
41        Open the command palette in Zed, then type `zed: open log` to see the last 1000 lines. Or type `zed: reveal log in file manager` in the command palette to reveal the log file itself.
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