Skip to content

Commit 3c4aada

Browse files
committed
fixes #9061 <C-w> + v and <C-w> + s split pane not working on VSCode 1.90
1 parent a3fbe65 commit 3c4aada

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/actions/commands/window.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ class VerticalSplit extends BaseCommand {
133133
public override async exec(position: Position, vimState: VimState): Promise<void> {
134134
vimState.postponedCodeViewChanges.push({
135135
command: 'workbench.action.splitEditor',
136-
args: {},
136+
args: undefined,
137137
});
138138
}
139139
}
@@ -149,7 +149,7 @@ class OrthogonalSplit extends BaseCommand {
149149
public override async exec(position: Position, vimState: VimState): Promise<void> {
150150
vimState.postponedCodeViewChanges.push({
151151
command: 'workbench.action.splitEditorOrthogonal',
152-
args: {},
152+
args: undefined,
153153
});
154154
}
155155
}

0 commit comments

Comments
 (0)