admin管理员组文章数量:1406177
How to disable Github Copilot suggestions in certain file types, for example - Todo? I'm using VSCode for task management and Copilot is very annoying here. I have tried
"github.copilot.enable": {
"TodoTXT": false,
"TODO": false,
"Todo": false
}
without any effect...
How to disable Github Copilot suggestions in certain file types, for example - Todo? I'm using VSCode for task management and Copilot is very annoying here. I have tried
"github.copilot.enable": {
"TodoTXT": false,
"TODO": false,
"Todo": false
}
without any effect...
Share Improve this question asked Mar 22 at 1:16 Kamil NajaKamil Naja 6,7307 gold badges37 silver badges52 bronze badges1 Answer
Reset to default 0This is the fix
"[todo]": {
"github.copilot.editor.enableAutoCompletions": false,
"github.copilot.nextEditSuggestions.enabled": false
}
You can also right click on Select Language Mode in bottom right corner, and select Configure 'Todo' Language based settings. This adds this language specific JSON part to your VSCode Settings.
本文标签: visual studio codeHow to disable Copilot for certain file types in VSCodeStack Overflow
版权声明:本文标题:visual studio code - How to disable Copilot for certain file types in VSCode - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1744327992a2600820.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论