11_crash_report.yml

 1name: Crash Report
 2description: Zed is Crashing or Hanging
 3type: "Crash"
 4body:
 5  - type: textarea
 6    attributes:
 7      label: Summary
 8      description: Describe the bug with a one line summary, and provide detailed reproduction steps
 9      value: |
10        <!-- Please insert a one line summary of the issue below -->
11
12        <!-- Include all steps necessary to reproduce from a clean Zed installation. Be verbose -->
13        Steps to trigger the problem:
14        1.
15        2.
16        3.
17
18        Actual Behavior:
19
20        Expected Behavior:
21
22    validations:
23      required: true
24  - type: textarea
25    id: environment
26    attributes:
27      label: Zed Version and System Specs
28      description: 'Open Zed, and in the command palette select "zed: Copy System Specs Into Clipboard"'
29      placeholder: |
30        Output of "zed: Copy System Specs Into Clipboard"
31    validations:
32      required: true
33  - type: textarea
34    attributes:
35      label: If applicable, attach your `~/Library/Logs/Zed/Zed.log` file to this issue.
36      description: |
37        macOS: `~/Library/Logs/Zed/Zed.log`
38        Linux: `~/.local/share/zed/logs/Zed.log` or $XDG_DATA_HOME
39        If you only need the most recent lines, you can run the `zed: open log` command palette action to see the last 1000.
40      value: |
41        <details><summary>Zed.log</summary>
42
43        <!-- Click below this line and paste or drag-and-drop your log-->
44        ```
45
46        ```
47        <!-- Click above this line and paste or drag-and-drop your log--></details>
48    validations:
49      required: false