We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ea4f79a commit 1a64801Copy full SHA for 1a64801
cursorless-everywhere-talon/cursorless_everywhere_talon_browser.py
@@ -20,7 +20,9 @@
20
@ctx.action_class("user")
21
class Actions:
22
def cursorless_everywhere_get_editor_state() -> EditorState:
23
- command = {"type": "getActiveEditor"}
+ command = {
24
+ "type": "getActiveEditor",
25
+ }
26
res = rpc_get(command)
27
if use_fallback(res):
28
return actions.next()
@@ -40,7 +42,10 @@ def cursorless_everywhere_set_selections(
40
42
def cursorless_everywhere_edit_text(
41
43
edit: EditorEdit, # pyright: ignore [reportGeneralTypeIssues]
44
):
- command = {"type": "setText", "text": edit["text"]}
45
46
+ "type": "setText",
47
+ "text": edit["text"],
48
49
50
51
actions.next(edit)
0 commit comments