Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | fix(lsp): handle adjacent snippet tabstops | Maria José Solano | 2024-02-05 |
| | |||
* | refactor: create function for deferred loading | dundargoc | 2024-02-03 |
| | | | | | | | | | | | | | | | | The benefit of this is that users only pay for what they use. If e.g. only `vim.lsp.buf_get_clients()` is called then they don't need to load all modules under `vim.lsp` which could lead to significant startuptime saving. Also `vim.lsp.module` is a bit nicer to user compared to `require("vim.lsp.module")`. This isn't used for some nested modules such as `filetype` as it breaks tests with error messages such as "attempt to index field 'detect'". It's not entirely certain the reason for this, but it is likely it is due to filetype being precompiled which would imply deferred loading isn't needed for performance reasons. | ||
* | fix(snippet): remove misleading comment about TM_FILENAME_BASE (#26465) | Maria José Solano | 2023-12-08 |
| | |||
* | feat(lsp): support for choice snippet nodes | Maria José Solano | 2023-11-17 |
| | |||
* | fix(lsp): do not cancel snippet when selecting placeholder (#25835) | Maria José Solano | 2023-10-30 |
| | |||
* | fix(lsp): cancel session when leaving snippet region (#25762) | Maria José Solano | 2023-10-26 |
| | |||
* | fix(lsp): do not add extra indentation | Maria José Solano | 2023-10-23 |
| | |||
* | fix(lsp): track snippet deletion | Maria José Solano | 2023-10-23 |
| | |||
* | feat(lsp): add snippet API (#25301) | Maria José Solano | 2023-10-21 |