We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
See #2102 (comment) for more, but basically, instead of:
aaa(bbb); const ccc = aaa(bbb); ccc + aaa(bbb); ccc(aaa(bbb)); --- [#1 Content] = [#1 Removal] = 0:0-0:8 0| aaa(bbb); >--------< 1| const ccc = aaa(bbb); 2| ccc + aaa(bbb); 3| ccc(aaa(bbb));
we would do
aaa(bbb); const ccc = aaa(bbb); ccc + aaa(bbb); ccc(aaa(bbb)); --- [#1 Content] = [#1 Removal] = 0:0-0:8 0| aaa(bbb); >--------<
The text was updated successfully, but these errors were encountered:
Don't show lines in our facet tests that are outside of the range (#2207
d228144
) Fixes #2164 ## Checklist - [-] I have added [tests](https://www.cursorless.org/docs/contributing/test-case-recorder/) - [-] I have updated the [docs](https://github.com/cursorless-dev/cursorless/tree/main/docs) and [cheatsheet](https://github.com/cursorless-dev/cursorless/tree/main/cursorless-talon/src/cheatsheet) - [-] I have not broken the cheatsheet
3be886c
Successfully merging a pull request may close this issue.
See #2102 (comment) for more, but basically, instead of:
we would do
The text was updated successfully, but these errors were encountered: