Skip to content

Commit

Permalink
Whips
Browse files Browse the repository at this point in the history
  • Loading branch information
pokey committed Jan 18, 2024
1 parent e23b6f1 commit 7daa99b
Showing 1 changed file with 5 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -74,14 +74,15 @@ export class KeyboardCommandHandler {

performWrapActionOnTarget({ delimiter }: { delimiter: SurroundingPairName }) {
const [left, right] = surroundingPairsDelimiters[delimiter]!;
this.targeted.performActionOnTarget((target) => (
action: {
this.targeted.performActionOnTarget(
(target) => ({
name: "wrapWithPairedDelimiter",
target,
left,
right,
},
), {exitCursorlessMode: false});
}),
{ exitCursorlessMode: false },
);
}

modifyTarget({ modifier }: { modifier: Modifier }) {
Expand Down

0 comments on commit 7daa99b

Please sign in to comment.