无法在 Visual Studio Code 中使用键盘选择文本

无法在 Visual Studio Code 中使用键盘选择文本

由于某种原因,我无法使用 Visual Studio Code(macOS 10.15.4 上的 1.45.1 版本)中的键盘选择文本。

如果我按Shift+ right,光标会向右移动,但不会选择文本。

如果我:

  • 进入“首选项”->“键盘快捷键”,
  • 选择“记录按键”选项,然后
  • Shift然后按right

事情是这样的:

当我按下 Shift 键时,我看到框中出现“Shift+”;但是,当我添加右键时,我得到的是“right”而不是预期的“Shift+right”。

重新启动后就会发生这种情况——即使我禁用所有插件。

它也不一致:大多数时候它不起作用;但有时它起作用。有一件事是一致的:如果我尝试进行列编辑(shift+ opt+ command+ down),则shift+right停止工作。

知道什么地方可能出错/配置错误吗?


设置文件:

{
    "editor.suggestSelection": "first",
    "vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
    "files.autoSave": "onFocusChange",
    "java.configuration.checkProjectSettingsExclusions": false,
    "[java]": {
        "editor.defaultFormatter": "redhat.java"
    },
    "diffEditor.ignoreTrimWhitespace": false,
    "[erb]": {
        "editor.defaultFormatter": "aliariff.vscode-erb-beautify",
    },
    "[html]": {
        "editor.defaultFormatter": "vscode.html-language-features"

    },
    "editor.tabSize": 2,
    "[javascript]": {
        "editor.defaultFormatter": "vscode.typescript-language-features"
    },
    "window.zoomLevel": 1,
    "maven.executable.path": "/opt/local/bin/mvn",
    "workbench.settings.useSplitJSON": true,
    "editor.acceptSuggestionOnCommitCharacter": false,
    "[javascriptreact]": {
        "editor.defaultFormatter": "vscode.typescript-language-features"
    },
    "eslint.alwaysShowStatus": true,
    "prettier.arrowParens": "always",
    "editor.codeActionsOnSave": {
        "source.fixAll.eslink": true
    },
    "prettier.jsxSingleQuote": true,
    "prettier.jsxBracketSameLine": true,
    "javascript.format.semicolons": "remove",
    "javascript.preferences.quoteStyle": "single",
    "typescript.format.insertSpaceBeforeFunctionParenthesis": true,
   "javascript.format.insertSpaceBeforeFunctionParenthesis": true,
    "cSpell.enableFiletypes": [
        "erb"
    ],
    "java.requirements.JDK11Warning": false,
    "java.semanticHighlighting.enabled": true
}

相关内容