Skip to content

Commit

Permalink
improve issue templates readability, require $TERM info, add fenced c…
Browse files Browse the repository at this point in the history
…ode example
  • Loading branch information
livibetter committed Feb 25, 2018
1 parent dc5ee34 commit 980b2fb
Show file tree
Hide file tree
Showing 2 changed files with 42 additions and 11 deletions.
18 changes: 13 additions & 5 deletions .github/ISSUE_TEMPLATE.md
@@ -1,11 +1,19 @@
<!--
If you are reporting a bug, please go to README's "Reporting an Issue"
section, and click on "Reporting a bug" to use that form.
* Please give your issue a clear and brief title.
* Consider upload screenshot, if it would be more helpful.
* Please put terminal output in fenced block, three backticks ``` above the
output and three more below.
* Consider upload a screenshot, if helpful.
* Please put terminal output or code in fenced block, for examples:
```
user $ echo $TERM
xterm
```
```bash
# some Bash code
```
-->
35 changes: 29 additions & 6 deletions .github/ISSUE_TEMPLATE/BUG.md
Expand Up @@ -2,20 +2,43 @@

<!-- all required -->

* OS: <!-- and version or distribution -->
* Terminal emulator: <!-- and version -->
<!-- with version or distribution -->
* OS:

<!-- with version -->
* Terminal emulator:

<!-- with version, if you use; if not, remove this part -->
* Terminal multiplexer:

<!-- paste the output -->
* `echo $TERM`:

* Bash version:

* pipes.sh version or commit hash:
<!-- list anything else you think would help -->

<!-- list anything else that would help -->

### Expected behavior



### Actual behavior

<!--
* consider upload screenshot, if it would be more helpful.
* please put terminal output in fenced block, three backticks ``` above the
output and three more below.
* Consider upload a screenshot, if helpful.
* Please put terminal output or code in fenced block, for examples:
```
user $ echo $TERM
xterm
```
```bash
# some Bash code
```
-->

### Steps to reproduce the behavior
Expand Down

0 comments on commit 980b2fb

Please sign in to comment.