英文:
How can I show the IntelliSense autocomplete dropdown when using GitHub Copilot in VS Code?
问题
我在使用VS Code与Copilot和Copilot Chat时遇到了问题。
当我编写一个函数时,我想查看对象的属性,使用"智能感知自动完成下拉列表":
当我使用Copilot时,默认情况下,它首先会建议"智能感知自动完成下拉列表"。像这样:
当我现在按下<kbd>Ctrl</kbd>+<kbd>i</kbd>时,它会隐藏Copilot的建议和"智能感知自动完成下拉列表"。这正是我想要的。但由于Copilot Chat也存在,它现在会显示Copilot Chat的内容:
如何显示或强制显示"智能感知自动完成下拉列表"?
英文:
I have a problem using VS Code with Copilot and Copilot Chat.
When I write a function I would like to view the properties of an object with the "intellisense autocomplete dropdown":
When I'm using Copilot, by default, it will first suggest the "intellisense autocomplete dropdown". Like this:
When I now press <kbd>Ctrl</kbd>+<kbd>i</kbd> it will hide the copilot suggestion and "intellisense autocomplete dropdown". This is what I want. But since Copilot Chat is a thing, it will now show the Copilot Chat thing:
How can I show or force show the "intellisense autocomplete dropdown"?
答案1
得分: 1
你可以在命令面板中使用Trigger Suggest
命令,或者使用与该命令绑定的键盘快捷键。你也可以根据自己的喜好重新绑定键盘快捷键(命令ID是editor.action.triggerSuggest
)。
英文:
You can use the Trigger Suggest
command in the command palette, or whatever keyboard shortcut is bound to that command. You can rebind the keyboard shortcut to your liking too (the command ID is editor.action.triggerSuggest
).
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论