cursorless icon indicating copy to clipboard operation
cursorless copied to clipboard

Don't let the cursor slow you down

Results 476 cursorless issues
Sort by recently updated
recently updated
newest added

I have this pytest file: ``` import pytest from freezegun import freeze_time from quaero_api.models.published_item_query import QueryField @pytest.mark.parametrize( "field, keywords, expected_output", [ # The extra space before the ~ should still...

enhancement

Once we have a way to detect that the selection is a file in the file explorer we can re enable this feature Disabled in #2798

This one is unfortunately quite hard. If the comment wasn't there the comma would be cleaned up. The whole thing about dealing with comments is something I intend to do...

lang-clojure

Just for tracking the next time "we" (well, technically VS Code [1]) upgrade the TypeScript compiler version or the runtime, these are the smaller things we can bring along. ##...

# The problem Consider the `"access"` scope (eg `.aaa`). Should the `.` be in the leading delimiter range or the content range? If the `.` is considered part of the...

enhancement

Here's an example with the parse: ``` taggedTemplate`hello ${firstName}`; > program >> expression_statement >>> call_expression >>>> arguments: template_string >>>>> template_substitution >>>>>> identifier >>>>>> "firstName" ``` I wonder if the `template_string`...

enhancement
good first issue

https://github.com/cursorless-dev/cursorless/pull/2775/files adds triple ` as a supported surrounding pair, and adds a private spoken form, but not one that the user will be able to use by default. It's probably...

Tree sitter has a limitation of three captures per node. If you supply more than three the latter ones will just silently be dropped. We should validate this ourself and...

Today we run all defined scopes/captures from a single language in Tree sitter at once. We could increase performance if we just ran the scope/captures actually needed. https://github.com/cursorless-dev/cursorless/blob/181cd9f5c2a47c460de01a7102bf89ee9d964d5a/packages/cursorless-engine/src/languages/LanguageDefinition.ts#L62-L64

performance

_Originally posted by @pokey in https://github.com/cursorless-dev/cursorless/pull/1605#discussion_r1258935789_