g:copilot_filetypes A dictionary mapping file types to their enabled
status. Most file types are enabled by default, so
generally this is used for opting out.
>
let g:copilot_filetypes = {
\ 'xml': v:false,
\ }
<
Disabling all file types can be done by setting the
special key "*". File types can then be turned back
on individually.
>
let g:copilot_filetypes = {
\ '*': v:false,
\ 'python': v:true,
\ }
可以使用 全局禁用副驾驶。可以使用以下命令从文件 (或或)
:Copilot disable
自动执行此命令:vimrc
~/.vimrc
~/.vim/vimrc
$XDG_CONFIG_HOME/vim/vimrc
autocmd
VimEnter
“完成所有启动操作后”会触发该事件。该模式*
匹配所有文件名,因此始终适用。:Copilot enable
然后,每当人们想要再次从副驾驶那里获得内联建议时,只需运行该命令即可。我相信您正在寻找的选项是
g:copilot_filetypes
:因此添加到你的 vimrc 中:
然后在需要时启用它。