almost no-op (#8)

* add folding

* no more fold
This commit is contained in:
peturparkur 2025-08-25 20:55:30 +02:00 committed by GitHub
parent c3c0b45e6e
commit d1aade11b5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 14 additions and 0 deletions

View file

@ -167,6 +167,11 @@ return {
vim.lsp.inlay_hint.enable(not vim.lsp.inlay_hint.is_enabled { bufnr = event.buf })
end, '[T]oggle Inlay [H]ints')
end
if client and client_supports_method(client, 'textDocument/foldingRange', event.buf) then
-- local win = vim.api.nvim_get_current_win()
-- vim.wo[win][0].foldexpr = 'v:lua.vim.lsp.foldexpr()'
end
end,
})