在 Visual Studio Code (VS Code) 中,你可以使用以下方法快速跳转到文件的最顶部:
使用键盘快捷键:按下 Ctrl + Home
或 Command + Home
(在 macOS 上)可以快速将光标跳转到文件的开头。
使用命令面板:使用 Ctrl + Shift + P
或 Command + Shift + P
(在 macOS 上)打开命令面板,然后输入 "Go to Beginning of File" 并选择该命令,即可将光标跳转到文件的最顶部。
使用侧边栏滚动条:在 VS Code 的侧边栏中,有一个垂直滚动条。点击滚动条的顶部区域,即可将光标跳转到文件的最顶部。
使用文件导航器:在 VS Code 的左侧边栏中,有一个文件导航器。双击文件导航器中的顶部项目,即可将光标跳转到文件的最顶部。
在 Visual Studio Code (VS Code) 中,你可以通过以下步骤设置删除行尾的空格:
Ctrl + ,
打开设置面板。在 Visual Studio Code (VS Code) 中,你可以通过以下步骤设置代码长度提示线(也称为“标尺”):
Ctrl + ,
打开设置面板。ctrl/command + /
搜索:toggle block comment
shift + alt/option + a (按习惯可修改为 ctrl/command + shift + /)
直接 ctrl/command + x 和 剪切 一样且不用选中整行
(正常为 ctrl/command + shift + k)
搜索 copy line down, copy line up
shift + alt/option + up/down,我改成 ctrl + up / down
ctrl + ] 或 tab //向右缩进
ctrl + [ 或 shift + tab //向左缩进
搜索 move line up
alt/option + up/down
ctrl/command + f / ctrl/ + h
home / end
ctrl + shift + up/down, 因为ctrl + shift 和vnc冲突,我改成了shift+ alt+up/down
搜索 add cursor above, add cursor below
第二种方式:
按住 alt 同时用鼠标左键点击需要增加增加的位置,即可。
备份的 keybindings.json
// Place your key bindings in this file to override the defaultsauto[]
[
{
"key": "alt+left",
"command": "workbench.action.navigateBack"
},
{
"key": "alt+left",
"command": "-workbench.action.navigateBack"
},
{
"key": "alt+right",
"command": "workbench.action.navigateForward"
},
{
"key": "alt+right",
"command": "-workbench.action.navigateForward"
},
{
"key": "f1",
"command": "workbench.action.findInFiles"
},
{
"key": "ctrl+shift+f",
"command": "-workbench.action.findInFiles"
},
{
"key": "shift+alt+down",
"command": "editor.action.insertCursorBelow",
"when": "editorTextFocus"
},
{
"key": "ctrl+alt+down",
"command": "-editor.action.insertCursorBelow",
"when": "editorTextFocus"
},
{
"key": "shift+alt+up",
"command": "editor.action.insertCursorAbove",
"when": "editorTextFocus"
},
{
"key": "ctrl+alt+up",
"command": "-editor.action.insertCursorAbove",
"when": "editorTextFocus"
},
{
"key": "ctrl+down",
"command": "editor.action.copyLinesDownAction",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "shift+alt+down",
"command": "-editor.action.copyLinesDownAction",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "ctrl+up",
"command": "editor.action.copyLinesUpAction",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "shift+alt+up",
"command": "-editor.action.copyLinesUpAction",
"when": "editorTextFocus && !editorReadonly"
}
]
JSON 复制 全屏
将此文件覆盖到新的vscode 中的json文件即可。