general cheetsheet

link:
keyboard-shortcuts-windows.pdf

inline linke:

代码浏览

vscode 菜单栏的 go 选项

cmdkeyboardcontent图示
trigger suggestCtrl + i写代码时触发代码补全提示框
go to DefinitionF12查看变量定义
backCtrl + Alt + - /或 Alt + <-(leftarrow)返回原来位置
go to ReferenceShift + F12查看变量在哪些地方被引用(包括调用和实现)
go to implementationsCtrl + F12查看变量实现的定义
Format DocumentShift+Alt+F对代码文档格式化
word warpAlt+Z代码折行展示
Go to BracketCtrl + Shift + \寻找当前位置所在的"括号"(范围)

vscode配置格式

{
  "key": "ctrl+i",
  "command": "workbench.action.chat.stopListeningAndSubmit",
  "when": "hasChatProvider && hasSpeechProvider && inChatInput && voiceChatInProgress || hasChatProvider && hasSpeechProvider && inlineChatFocused && voiceChatInProgress"
}

https://github.com/codebling/vs-code-default-keybindings/blob/master/windows.negative.keybindings.json#L722

资料

https://code.visualstudio.com/docs/editor/intellisense#:~:text=You%20can%20trigger%20IntelliSense%20in,name%20to%20limit%20the%20suggestions. https://github.com/codebling/vs-code-default-keybindings/tree/master