You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
description: An issue with ripgrep or any of its crates (ignore, globset, etc.).
3
+
body:
4
+
- type: markdown
5
+
attributes:
6
+
value: |
7
+
Please review the following common issues before filing a bug. You may also be interested in reading the [FAQ](https://github.com/BurntSushi/ripgrep/blob/master/FAQ.md)
8
+
and the [user guide](https://github.com/BurntSushi/ripgrep/blob/master/GUIDE.md).
9
+
10
+
* Unable to search for text with leading dash/hyphen: This is not a bug. Use `rg -- -mytext` or `rg -e -mytext`. See #102, #215, #624.
11
+
* Unable to build with old version of Rust. This is not a bug. ripgrep tracks the latest stable release of Rust. See #1019, #1433, #2534.
12
+
* ripgrep package is broken or out of date. ripgrep's author does not maintain packages for Red Hat, Ubuntu, Arch, Homebrew, WinGet, etc. If you have an issue with one of these, please contact your package maintainer. See #1637, #2264, #2459.
13
+
14
+
- type: checkboxes
15
+
id: issue-not-common
16
+
attributes:
17
+
label: Please tick this box to confirm you have reviewed the above.
18
+
options:
19
+
- label: I have a different issue.
20
+
required: true
21
+
22
+
- type: textarea
23
+
id: ripgrep-version
24
+
attributes:
25
+
label: What version of ripgrep are you using?
26
+
description: Enter the output of `rg --version`.
27
+
placeholder: ex. ripgrep 13.0.0
28
+
validations:
29
+
required: true
30
+
31
+
- type: textarea
32
+
id: install-method
33
+
attributes:
34
+
label: How did you install ripgrep?
35
+
description: |
36
+
If you installed ripgrep with snap and are getting strange file permission or file not found errors, then please do not file a bug. Instead, use one of the GitHub binary releases.
37
+
38
+
Please report any other issues with downstream ripgrep packages to their respective maintainers as mentioned above.
39
+
placeholder: ex. Cargo, APT, Homebrew
40
+
validations:
41
+
required: true
42
+
43
+
- type: textarea
44
+
id: operating-system
45
+
attributes:
46
+
label: What operating system are you using ripgrep on?
47
+
description: Enter the name and version of your operating system.
48
+
placeholder: ex. Debian 12.0, macOS 13.4.1
49
+
validations:
50
+
required: true
51
+
52
+
- type: textarea
53
+
id: description
54
+
attributes:
55
+
label: Describe your bug.
56
+
description: Give a high level description of the bug.
57
+
placeholder: ex. ripgrep fails to return the expected matches when...
58
+
validations:
59
+
required: true
60
+
61
+
- type: textarea
62
+
id: steps-to-reproduce
63
+
attributes:
64
+
label: What are the steps to reproduce the behavior?
65
+
description: |
66
+
If possible, please include both your search patterns and the corpus on which you are searching. Unless the bug is very obvious, then it is unlikely that it will be fixed if the ripgrep maintainers cannot reproduce it.
67
+
68
+
If the corpus is too big and you cannot decrease its size, file the bug anyway and the ripgrep maintainers will help figure out next steps.
69
+
placeholder: >
70
+
ex. Run `rg bar` in a directory containing a file with the lines 'bar' and 'barbaz'
71
+
validations:
72
+
required: true
73
+
74
+
- type: textarea
75
+
id: actual-behavior
76
+
attributes:
77
+
label: What is the actual behavior?
78
+
description: |
79
+
Show the command you ran and the actual output. **Include the `--debug` flag in your invocation of ripgrep.**
80
+
81
+
If the output is large, put it in a gist: <https://gist.github.com/>
82
+
83
+
If the output is small, put it in code fences (see placeholder text).
0 commit comments