Skip to content

Commit 61eb0b5

Browse files
committed
Remove knausj conflict
1 parent cba04dd commit 61eb0b5

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/actions/actions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ def vscode_command_no_wait(command_id: str, target: dict, command_options: dict
8787
"swap_action": {"swap": "swapTargets"},
8888
"move_bring_action": {"bring": "replaceWithTarget", "move": "moveToTarget"},
8989
"wrap_action": {"wrap": "wrapWithPairedDelimiter", "repack": "rewrap"},
90-
"insert_snippet_action": {"snip": "insertSnippet"},
90+
"insert_snippet_action": {"snippet": "insertSnippet"},
9191
"reformat_action": {"format": "applyFormatter"},
9292
}
9393

src/command.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ def cursorless_this_command(
5454
):
5555
"""Execute cursorless command, passing `this` as single target"""
5656
actions.user.cursorless_multiple_target_command(
57-
action, [STRICT_HERE], arg1, arg2, arg3
57+
action, [IMPLICIT_TARGET], arg1, arg2, arg3
5858
)
5959

6060
def cursorless_single_target_command_with_arg_list(

src/snippets.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,4 +105,4 @@ def on_ready():
105105
)
106106

107107

108-
app.register("ready", on_ready)
108+
app.register("ready", on_ready)

0 commit comments

Comments
 (0)