|
@@ -89,6 +89,19 @@ require('mini.completion').setup({
|
|
|
lsp_completion = {
|
|
|
source_func = 'omnifunc',
|
|
|
auto_setup = false,
|
|
|
+
|
|
|
+ -- workaround from https://github.com/echasnovski/mini.nvim/issues/306#issuecomment-1517954136
|
|
|
+ process_items = function(items, base)
|
|
|
+ -- Remove dots as prefix from `textEdit.newText` as it is used verbatim
|
|
|
+ for _, item in ipairs(items) do
|
|
|
+ local new_text = (item.textEdit or {}).newText
|
|
|
+ if type(new_text) == 'string' then
|
|
|
+ item.textEdit.newText = new_text:gsub('^%.+', '')
|
|
|
+ end
|
|
|
+ end
|
|
|
+
|
|
|
+ return MiniCompletion.default_process_items(items, base)
|
|
|
+ end,
|
|
|
},
|
|
|
});
|
|
|
|