Skip to content

Commit

Permalink
Remove knausj conflict
Browse files Browse the repository at this point in the history
  • Loading branch information
pokey committed Dec 21, 2021
1 parent 6041518 commit dfac44c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/actions/actions.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ def vscode_command_no_wait(command_id: str, target: dict, command_options: dict
"swap_action": {"swap": "swapTargets"},
"move_bring_action": {"bring": "replaceWithTarget", "move": "moveToTarget"},
"wrap_action": {"wrap": "wrapWithPairedDelimiter", "repack": "rewrap"},
"insert_snippet_action": {"snip": "insertSnippet"},
"insert_snippet_action": {"snippet": "insertSnippet"},
"reformat_action": {"format": "applyFormatter"},
}

Expand Down
2 changes: 1 addition & 1 deletion src/command.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ def cursorless_this_command(
):
"""Execute cursorless command, passing `this` as single target"""
actions.user.cursorless_multiple_target_command(
action, [STRICT_HERE], arg1, arg2, arg3
action, [IMPLICIT_TARGET], arg1, arg2, arg3
)

def cursorless_single_target_command_with_arg_list(
Expand Down
2 changes: 1 addition & 1 deletion src/snippets.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,4 +105,4 @@ def on_ready():
)


app.register("ready", on_ready)
app.register("ready", on_ready)

0 comments on commit dfac44c

Please sign in to comment.