mirror of
https://github.com/xonsh/xonsh.git
synced 2025-03-04 08:24:40 +01:00
Add <details>
block to issue template
Just noticed this on a conda-forge feedstock and it's nice to not have the issue text all cluttered up with tracebacks and config outputs
This commit is contained in:
parent
28b6c51c04
commit
d70e635e14
1 changed files with 14 additions and 1 deletions
15
.github/issue_template.md
vendored
15
.github/issue_template.md
vendored
|
@ -4,7 +4,12 @@ please first look over the Bash to Xonsh translation guide: https://xon.sh/bash_
|
|||
If you don't find an answer there, please do open an issue! -->
|
||||
|
||||
## xonfig
|
||||
<!--- Please post the output of the `xonfig` command (run from inside xonsh) so we know more about your current setup -->
|
||||
|
||||
<details>
|
||||
```
|
||||
$ xonfig
|
||||
```
|
||||
</details>
|
||||
|
||||
## Expected Behavior
|
||||
<!--- Tell us what should happen -->
|
||||
|
@ -15,5 +20,13 @@ If you don't find an answer there, please do open an issue! -->
|
|||
To enter debug mode, set the environment variable `XONSH_DEBUG=1` _before_ starting `xonsh`.
|
||||
On Linux and OSX, an easy way to to do this is to run `env XONSH_DEBUG=1 xonsh` -->
|
||||
|
||||
### Traceback (if applicable)
|
||||
|
||||
<details>
|
||||
```
|
||||
traceback
|
||||
```
|
||||
</details>
|
||||
|
||||
## Steps to Reproduce
|
||||
<!--- Please try to write out a minimal reproducible snippet to trigger the bug, it will help us fix it! -->
|
||||
|
|
Loading…
Add table
Reference in a new issue