Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix display of arrow keys in README #38

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@ Also check out [rg.el](https://github.com/dajva/rg.el), which I haven't used muc
- Use <kbd>M-g</kbd> to input a glob pattern to filter files by, e.g. `*.py`.
- The glob pattern defaults to the value of `helm-rg-default-glob-string`, which is an empty string (matches every file) unless you customize it.
- Pressing <kbd>M-g</kbd> again shows the same minibuffer prompt for the glob pattern, with the string that was previously input.
- Use <kbd><left></kbd> and <kbd><right></kbd> to go up and down by files in the results.
- <kbd><up></kbd> and <kbd><down></kbd> simply go up and down by match result, and there may be many matches for your pattern in a single file, even multiple on a single line (which `ripgrep` reports as multiple separate results).
- The <kbd><left></kbd> and <kbd><right></kbd> keys will move up or down until it lands on a result from a different file than it started on.
- Use <kbd>left</kbd> and <kbd>right</kbd> to go up and down by files in the results.
- <kbd>up</kbd> and <kbd>down</kbd> simply go up and down by match result, and there may be many matches for your pattern in a single file, even multiple on a single line (which `ripgrep` reports as multiple separate results).
- The <kbd>left</kbd> and <kbd>right</kbd> keys will move up or down until it lands on a result from a different file than it started on.
- When moving by file, `helm-rg` will cycle around the results list, but it will print a harmless error message instead of looping infinitely if all results are from the same file.
- Use the interactive autoloaded function `helm-rg-display-help` to see the ripgrep command's usage info.

Expand Down