Skip to content

Commit

Permalink
fixes VSCodeVim#9061 <C-w> + v and <C-w> + s split pane not working o…
Browse files Browse the repository at this point in the history
…n VSCode 1.90
  • Loading branch information
HenryTSZ committed Jun 12, 2024
1 parent a3fbe65 commit 3c4aada
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/actions/commands/window.ts
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ class VerticalSplit extends BaseCommand {
public override async exec(position: Position, vimState: VimState): Promise<void> {
vimState.postponedCodeViewChanges.push({
command: 'workbench.action.splitEditor',
args: {},
args: undefined,
});
}
}
Expand All @@ -149,7 +149,7 @@ class OrthogonalSplit extends BaseCommand {
public override async exec(position: Position, vimState: VimState): Promise<void> {
vimState.postponedCodeViewChanges.push({
command: 'workbench.action.splitEditorOrthogonal',
args: {},
args: undefined,
});
}
}
Expand Down

0 comments on commit 3c4aada

Please sign in to comment.