diff --git a/web/editor_state.ts b/web/editor_state.ts index ee442ed5..26203297 100644 --- a/web/editor_state.ts +++ b/web/editor_state.ts @@ -77,7 +77,12 @@ export function createEditorState( // Enable vim mode, or not [ - ...client.ui.viewState.uiOptions.vimMode ? [vim({ status: true })] : [], + ...client.ui.viewState.uiOptions.vimMode + ? [ + vim({ status: true }), + EditorState.allowMultipleSelections.of(true), + ] + : [], ], [ ...(readOnly || client.ui.viewState.uiOptions.forcedROMode)