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        From the command palette, run `zed: open log` to see the last 1000 lines.
39        Or run `zed: reveal log in file manager` to reveal the log file itself.
40      value: |
41        <details><summary>Zed.log</summary>
42
43        <!-- Paste your log inside the code block. -->
44        ```log
45
46        ```
47
48        </details>
49    validations:
50      required: false