无法添加用户快捷方式

问题描述 投票:0回答:1

创建第一个运行良好的快捷方式后,我尝试创建一个新快捷方式以将光标移动到行尾,但在这里我遇到了一个问题:快捷方式不起作用。

// Place your key bindings in this file to override the defaults
[
  {
    "key": "ctrl+n",
    "command": "explorer.newFile"
  },
  {
    "key": "shift+space",
    "command": "editor.action.insertCursorAtEndOfEachLineSelected",
    "when": "editorTextFocus"
  },
]

我检查了组合键是否已被使用,但事实并非如此。我也尝试过其他组合,但问题仍然存在。

enter image description here

visual-studio-code keyboard-shortcuts
1个回答
0
投票

我认为正确的命令是“cursorEnd”,因为“cursorEndSelect”将选择从当前位置到行尾的文本。不过,我认为你想将光标移动到行尾,所以你需要使用我之前提到的命令。

© www.soinside.com 2019 - 2024. All rights reserved.