cursorless
cursorless copied to clipboard
Don't let the cursor slow you down
This error happened when running the tests locally. This never happened to me before, but it happened after I refactored the code with Pokey changes from https://github.com/cursorless-dev/cursorless/pull/2369 ``` 2024-06-04 09:56:30...
 Note that this should never happen on CI because we run it as a headless on CI and the "enter to continue" message would be skipped. So this could...
It would be useful to be able to bring something from the buffer (text editor or terminal) onto the command line. An example is when renaming a tab using `:TabooRename...
In the following code: ```ts "hello\nworld" ``` `textFragment` currently looks like: We should have one text fragment for the entire inside of the string Here's parse tree: ```scm (string """...
In markdown "chuck item " and "take item " select different things at times. I noticed this when I had a file with a markdown list. "chuck item" would drop...
We're not very consistent with our terminology around `compile` and `build` in the various packages of our monorepo. We should - [ ] Look at `compile` / `build` in each...
- [x] add a command "show scopes " eg "show scopes funk" - [x] will highlight all scopes on screen using semi-transparent background to make nesting visible - [ ]...
Follow up on https://github.com/cursorless-dev/cursorless/pull/2383 - [ ] Close active text document when saving scope facets * Only do this if it's an untitled editor * Currently lack support in ide...
At the moment, when debugging with vscode, we need to change our default user profile to point to the mono repo dist/cursorless.nvim. See https://github.com/saidelike/cursorless/blob/37b9917f4f89684f92b89a662a45a1fcd3436701/docs/contributing/cursorless-in-neovim.md?plain=1#L20 it might be better to allow...
Yeah so the issue is that we don't necessarily want the iteration scope for functions to always include blocks. For example, that's not what we do in typescript. I added...