Skip to content

Commit f308221

Browse files
Use fall back
1 parent 11b89a4 commit f308221

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

cursorless-everywhere-talon/cursorless_everywhere_talon_browser.py

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -72,11 +72,9 @@ def cursorless_everywhere_flash_ranges(
7272
for r in js_array_to_python_list(ranges)
7373
],
7474
}
75-
rpc(command)
76-
77-
78-
def rpc(command: dict):
79-
actions.user.run_rpc_command(RPC_COMMAND, command)
75+
res = rpc_get(command)
76+
if use_fallback(res):
77+
actions.next(ranges)
8078

8179

8280
def rpc_get(command: dict):

0 commit comments

Comments
 (0)