1.Ctrl + Shift + P搜索key

keybindings.json 文件配置中[
{
"key": "tab",
"command": "acceptSelectedSuggestionOnEnter"
},
{
"key": "enter",
"command": "acceptSelectedSuggestion",
"when": "acceptSuggestionOnEnter && suggestWidgetVisible && suggestionMakesTextEdit && textInputFocus"
},
{
"key": "enter",
"command": "-acceptSelectedSuggestion",
"when": "acceptSuggestionOnEnter && suggestWidgetVisible && suggestionMakesTextEdit && textInputFocus"
},
{
"key": "tab",
"command": "acceptSelectedSuggestion",
"when": "suggestWidgetVisible && textInputFocus"
},
{
"key": "ctrl+shift+enter",
"command": "-acceptSelectedSuggestion",
"when": "suggestWidgetVisible && textInputFocus"
}
]