如何启用 `Github Copilot` 键入 `Tab` 以在降价文件中自动完成?
How to enable `Github Copilot` typing `Tab` to auto completes in markdown files?
我可以在 .md
文件中得到副驾驶的一些建议,但是当我按下 Tab
时,它只添加了一个 space,没有自动完成建议,我应该怎么做才能自动完成建议?
要使用 Tab 键为 GitHub Copilot 启用建议,请按照以下步骤操作。
在Visual Studio代码中打开文件keybindings.json
。这可以通过按 Ctrl + Shift + P 并键入 Open 来完成键盘快捷键 (JSON).
在keybindings.json
中添加以下内容。
[
{
"key": "tab",
"command": "editor.action.inlineSuggest.commit",
"when": "textInputFocus && inlineSuggestionHasIndentationLessThanTabSize && inlineSuggestionVisible && !editorTabMovesFocus"
}
]
现在您应该可以使用 Tab 键在 Markdown 中接受建议!
我可以在 .md
文件中得到副驾驶的一些建议,但是当我按下 Tab
时,它只添加了一个 space,没有自动完成建议,我应该怎么做才能自动完成建议?
要使用 Tab 键为 GitHub Copilot 启用建议,请按照以下步骤操作。
在Visual Studio代码中打开文件
keybindings.json
。这可以通过按 Ctrl + Shift + P 并键入 Open 来完成键盘快捷键 (JSON).在
keybindings.json
中添加以下内容。[ { "key": "tab", "command": "editor.action.inlineSuggest.commit", "when": "textInputFocus && inlineSuggestionHasIndentationLessThanTabSize && inlineSuggestionVisible && !editorTabMovesFocus" } ]
现在您应该可以使用 Tab 键在 Markdown 中接受建议!