Skip to content

Commit

Permalink
delete character in normal mode
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonwilliams committed Jan 3, 2024
1 parent 76adc88 commit a2302ca
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/actions/actions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,10 @@ export const actions: Action[] = [
vscode.commands.executeCommand('actions.findWithSelection');
}),

parseKeysExact(['d'], [Mode.Normal], (_) => {
vscode.commands.executeCommand('deleteRight');
}),

// existing
parseKeysExact(
[KeyMap.Actions.InsertMode],
Expand Down

0 comments on commit a2302ca

Please sign in to comment.