We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f6d159e commit a54e7b1Copy full SHA for a54e7b1
lua/copilot/util.lua
@@ -19,7 +19,7 @@ function M.get_editor_info()
19
},
20
editorPluginInfo = {
21
name = "copilot.vim",
22
- version = "1.8.1",
+ version = "1.8.2",
23
24
}
25
return info
@@ -229,7 +229,9 @@ function M.get_editor_configuration()
229
230
return {
231
enableAutoCompletions = not not (conf.panel.enabled or conf.suggestion.enabled),
232
- disabledLanguages = disabled_filetypes,
+ disabledLanguages = vim.tbl_map(function(ft)
233
+ return { languageId = ft }
234
+ end, disabled_filetypes),
235
236
end
237
0 commit comments