more stuff

This commit is contained in:
2025-09-16 00:34:25 -04:00
parent 9c7c46855c
commit 72d99537bf
9 changed files with 195 additions and 26 deletions

View File

@@ -26,11 +26,12 @@ auto('LspAttach', {
pcall(vim.lsp.linked_editing_range.enable, true, { client_id = client.id })
end
-- enable type formatting which allows lsps to modify text while you're
-- typing for example if you insert {} in a string in python basedpyright
-- will change the string to a format string
if client:supports_method('textDocument/onTypeFormatting') then
pcall(vim.lsp.on_type_formatting.enable, true, { client_id = client.id })
end
-- disabled for now cause I don't like it
-- -- enable type formatting which allows lsps to modify text while you're
-- -- typing for example if you insert {} in a string in python basedpyright
-- -- will change the string to a format string
-- if client:supports_method('textDocument/onTypeFormatting') then
-- pcall(vim.lsp.on_type_formatting.enable, true, { client_id = client.id })
-- end
end
})