VSCode添加 home 和 end键
code - preferences - keyboard shortcuts - keybindings.json:
添加:
{
"key": "home",
"command": "cursorTop",
"when": "editorTextFocus"
},
{
"key": "end",
"command": "cursorBottom",
"when": "editorTextFocus"
},
附:
vscode中快速移动至标签结尾
Mac Cmd+Shift+\
Windows Ctrl+Shift+\
如果有用关注我下~