Skip to content

Commit

Permalink
fixed keyboard shortcut (control + backspace) in windows
Browse files Browse the repository at this point in the history
  • Loading branch information
zKXDEX committed Nov 19, 2023
1 parent b4abe29 commit c59e9c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tabby-terminal/src/api/baseTerminalTab.component.ts
Expand Up @@ -290,7 +290,7 @@ export class BaseTerminalTabComponent<P extends BaseTerminalProfile> extends Bas
break
case 'delete-previous-word':
this.forEachFocusedTerminalPane(tab => {
tab.sendInput('\x1b\x7f')
tab.sendInput('\u0017')
})
break
case 'delete-next-word':
Expand Down

0 comments on commit c59e9c1

Please sign in to comment.