mirror of
https://github.com/neovim/neovim.git
synced 2025-11-16 07:11:20 +00:00
feat(lsp): support textDocument/onTypeFormatting (#34637)
Implements [on-type formatting](https://microsoft.github.io/language-server-protocol/specifications/lsp/3.18/specification/#textDocument_onTypeFormatting) using a `vim.on_key()` approach to listen to typed keys. It will listen to keys on the *left hand side* of mappings. The `on_key` callback is cleared when detaching the last on-type formatting client. This feature is disabled by default. Co-authored-by: Maria José Solano <majosolano99@gmail.com>
This commit is contained in:
@@ -19,6 +19,7 @@ local lsp = vim._defer_require('vim.lsp', {
|
||||
inline_completion = ..., --- @module 'vim.lsp.inline_completion'
|
||||
linked_editing_range = ..., --- @module 'vim.lsp.linked_editing_range'
|
||||
log = ..., --- @module 'vim.lsp.log'
|
||||
on_type_formatting = ..., --- @module 'vim.lsp.on_type_formatting'
|
||||
protocol = ..., --- @module 'vim.lsp.protocol'
|
||||
rpc = ..., --- @module 'vim.lsp.rpc'
|
||||
semantic_tokens = ..., --- @module 'vim.lsp.semantic_tokens'
|
||||
|
||||
Reference in New Issue
Block a user