summaryrefslogtreecommitdiffstatshomepage
path: root/runtime/lua/vim
AgeCommit message (Collapse)AuthorFiles
2025-06-19vim-patch:9.1.1468: filetype: bright(er)script files are not recognizedChristian Clason1
Problem: filetype: bright(er)script files are not recognized Solution: detect *.bs files as brighterscript filetype and *.brs as brightscript filetype, include filetype plugins (Riley Bruins) closes: vim/vim#17566 https://github.com/vim/vim/commit/03e5ee25fdd4f8ee16b00688e24c4ad3b8f8f935 Co-authored-by: Riley Bruins <ribru17@hotmail.com>
2025-06-18fix(diagnostics): validate opts.signs #34565Bruce Wen1
2025-06-18vim-patch:9.1.1466: filetype: not all lex files are recognizedEisuke Kawashima1
Problem: filetype: not all lex files are recognized Solution: detect *.ll as lex, llvm or lifelines filetype, depending on the content (Eisuke Kawashima) closes: vim/vim#17560 https://github.com/vim/vim/commit/48295111e578e2158c6234510f12081de4757c52 Co-authored-by: Eisuke Kawashima <e-kwsm@users.noreply.github.com>
2025-06-18feat(lsp): pass resolved config to cmd() #34550Julian Visser1
Problem: In LSP configs, the function form of `cmd()` cannot easily get the resolved root dir (workspace). One of the main use-cases of a dynamic `cmd()` is to be able to start a new server whose binary may be located *in the workspace* ([example](https://github.com/neovim/nvim-lspconfig/pull/3912)). Compare `reuse_client()`, which also receives the resolved config. Solution: Pass the resolved config to `cmd()`. Co-authored-by: Justin M. Keyes <justinkz@gmail.com>
2025-06-18Merge #34541 docsJustin M. Keyes3
2025-06-18docs(ui): type annotations for options #33983Yi Ming1
2025-06-18docs: api, miscJustin M. Keyes2
2025-06-18docs: deprecate <sfile>Justin M. Keyes1
2025-06-17fix(lsp): support v:count in selection_range() #34551Riley Bruins2
Co-authored-by: Yi Ming <ofseed@foxmail.com>
2025-06-17docs: vim.fs.dir.Opts type #34546phanium1
Follow the pattern of vim.fs.find.Opts
2025-06-17fix(docs): callback annotation for `vim.ui.input` #34507Maria José Solano1
2025-06-16fix(lsp): include client ID when receiving unknown fold kind (#34535)Maria José Solano1
2025-06-16fix(lsp): advertise supported fold kinds (#34461)Riley Bruins2
This commit also makes it so that folds which have an unsupported fold kind have their `kind` ignored.
2025-06-16feat(lsp): handle disabled code actions (#34453)Riley Bruins2
This commit also makes it so that disabled code actions are not displayed unless the trigger kind is "Invoked".
2025-06-16fix(lsp): add missing argument validations (#34519)Maria José Solano1
2025-06-16fix(lsp): use vim.notify for all message types #34489someoneinjd2
Problem: Currently, vim.notify is only used to display messages when the message type is Error. Solution: Use vim.notify to display messages for all message types.
2025-06-16vim-patch:631a50c: runtime(doc): mention cannot ignored events in ↵zeertzjq1
eventignorewin (#34522) closes: vim/vim#17545 https://github.com/vim/vim/commit/631a50ceb9a312a9042a8e8420afd8e948497d90 Co-authored-by: glepnir <glephunter@gmail.com>
2025-06-16docs(meta): fix incorrect bar -> backtick replacement (#34520)zeertzjq1
2025-06-15fix(lsp): use correct deprecation function (#34518)Maria José Solano1
2025-06-15fix(messages): add append parameter to history entries (#34467)luukvbaal1
Problem: The "append" parameter added in abb40ece is missing from history entries, resulting in different message formatting for "g<". Solution: Add "append" field to message history entries. Co-authored-by: phanium <91544758+phanen@users.noreply.github.com>
2025-06-15fix(extui): clear cmdline buffer for first message (#34490)luukvbaal4
Problem: Cmdline buffer is not cleared for a new message (since c973c7ae), resulting in an incorrect spill indicator. When the cmdline buffer is cleared, "msg_row" is not invalidated, resulting in an error. The extui module is untested. Return value of `vim.ui_attach()->callback` is undocumented. Solution: Clear the cmdline buffer for the first message in an event loop iteration. Ensure msg_row passed as end_row does not exceed buffer length. Add `messages_spec2.lua` to test the extui module, keeping in mind that test coverage will greatly increase if this UI is made the default. As such, only tests for specific extui functionality unlikely to be covered by tests leveraging the current message grid. Document the return value of `vim.ui_attach()->callback`, it seems to make sense, and is also used to suppress remote UI events in `messages_spec2.lua`.
2025-06-14docs: miscdundargoc2
Co-authored-by: Jan Weinkauff <jan@weinkauff.cloud> Co-authored-by: MeanderingProgrammer <meanderingprogrammer@gmail.com> Co-authored-by: Yochem van Rosmalen <git@yochem.nl> Co-authored-by: phanium <91544758+phanen@users.noreply.github.com>
2025-06-13feat(lsp): support multiline semantic tokens #34458Riley Bruins2
2025-06-13docs: vim.fs., diagnostics, lsp #34402Justin M. Keyes4
2025-06-13feat(treesitter)!: apply `offset!` directive to all captures #34383Riley Bruins2
This commit changes the `offset!` directive so that instead of setting a `metadata.range` value for the entire pattern, it will set a `metadata.offset` value. This offset will be applied to the range only in `vim.treesitter.get_range()`, rather than at directive application time. This allows the offset to be applied to any and all nodes captured by the given pattern, and removes the requirement that `#offset!` be applied to only a single node. The downside of this change is that plugins which read from `metadata.range` may be thrown off course, but such plugins should prefer `vim.treesitter.get_range()` when retrieving ranges anyway. Note that `#trim!` still sets `metadata.range`, and `vim.treesitter.get_range()` still reads from `metadata.range`, if it exists.
2025-06-13docs(extui): rename box->msg, more->pager, prompt->dialogLuuk van Baal4
Includes breaking changes to the `opts` layout. "box" doesn't really describe anything other than a floating window so was an unwanted synonym.
2025-06-13fix(extui): only append messages exceeding 'cmdheight' to "more"Luuk van Baal2
Problem: 8defe1a declared the "more" window the most convenient place to route messages to if it is already open for msg.pos == 'cmd'. In usage, this doesn't appear to be the case. Appending messages as added in that commit is still useful, but should only be done for messages that spill 'cmdheight'. Solution: Only append messages exceeding 'cmdheight' to the more window. To do this, instead of immediately writing to the more buffer, write to the cmd buffer and calculate its height. Then copy the text and its highlights to the more buffer.
2025-06-13vim-patch:91af4c4: runtime(doc): improve the wording of 'sts', 'varts' and ↵zeertzjq1
'varsts' values (#34480) closes: vim/vim#17522 https://github.com/vim/vim/commit/91af4c41809c4089d15857c1be13315b1969ea3b Co-authored-by: Damien Lejay <damien@lejay.be> Co-authored-by: Christian Brabandt <cb@256bit.org>
2025-06-12fix(lsp): correct diagnostic data support and related info capabilities (#34454)Riley Bruins1
2025-06-12feat(lsp): <Plug> mapping for signature help cycling #34039Tiago Inaba1
Replace direct function mappings with `<Plug>` mappings for cycling through overloaded signatures, providing better customization options for users. This change keeps the default mapping (`<C-s>`) for cycling if `<Plug>(nvim.lsp.ctrl-s)` is not mapped.
2025-06-12feat(lsp): incremental selection via "textDocument/selectionRange" #34011Riley Bruins3
Select outwards with "an" and inwards with "in" in Visual mode. Ranges are reset when leaving Visual mode.
2025-06-12fix(lsp): _cancel_all_requests() tries to cancel completed requests #34105Andre Toerien1
Problem: The cancel function returned by `vim.lsp.buf_request` tries to cancel all the requests, including those that have already been completed, causing "Cannot find request with id ... whilst attempting to cancel" errors to be logged when it is called. Solution: Only cancel the requests that are present in `client.requests`.
2025-06-12vim-patch:053aee0: runtime(doc): add more pointers to 'completeopt' (#34460)zeertzjq1
Before this commit, I had trouble finding information about configuring the insert mode completion. In particular, it was not clear that the 'wildopt' config that I already had in my vimrc does not apply here. Also, `insert.txt` barely mentioned 'completeopt' except when describing popups (I was more interested in bash-like behavior where the unique prefix of all completions is completed first). I'm hoping these edits will make the relevant docs easier to find. closes: vim/vim#17515 https://github.com/vim/vim/commit/053aee01f7374fc8c985300399b1ad3b3626e40f Co-authored-by: Ilya Grigoriev <ilyagr@users.noreply.github.com>
2025-06-10fix(lsp): announce diagnostic tag support (#34436)Riley Bruins1
This commit also adds a type annotation to the returned client capabilities table, because without it lua_ls does not provide autocompletion for the fields within the table.
2025-06-10vim-patch:bfa1636: runtime(doc): update documentation on tabstop settings ↵zeertzjq1
(#34433) Unify the treatment of tabstop, correct errors and deprecate smarttab usage. closes: vim/vim#17444 https://github.com/vim/vim/commit/bfa16364f104f336fc7407ee4533ae9045f040c4 Co-authored-by: Damien Lejay <damien@lejay.be>
2025-06-10vim-patch:9.1.1446: filetype: cuda-gdb config files are not recognizedChristian Clason1
Problem: filetype: cuda-gdb config files are not recognized Solution: detect .cuda-gdbinit and cuda-gdbinit files as gdb filetype (Wu Zhenyu) closes: vim/vim#17471 https://github.com/vim/vim/commit/601cfa9a2362ca14d83ddde392483bd6e3fbe39a Co-authored-by: Wu, Zhenyu <wuzhenyu@ustc.edu>
2025-06-09feat(lsp): workspace diagnostic support (#34262)Maria José Solano3
* refactor(lsp): remove underscore prefix from local variables * feat(lsp): workspace diagnostic support
2025-06-09feat(lsp): static registration support (#34371)Maria José Solano1
2025-06-09feat(vim.fs): root() can specify "equal priority" #34276Siddhant Agarwal2
2025-06-09fix: `fn.exists()` typos (#34390)phanium1
Problem: `exists()` checks should test for being equal to 1 rather than truthy, and extui check can be more restrictive. Solution: Adjust `exists()` guards to equal 1 and use `matchparen#CursorMoved`.
2025-06-08fix(treesitter): ensure window is valid in async parsing #34385notomo1
Problem: Error occurs if window is invalid in the middle of parsing. Solution: Check if window is valid in parsing. - Error ``` vim.schedule callback: ...im/share/nvim/runtime/lua/vim/treesitter/highlighter.lua:485: Invalid window id: 1037 stack traceback: [C]: in function 'nvim__redraw' ...im/share/nvim/runtime/lua/vim/treesitter/highlighter.lua:485: in function 'cb' ...m/share/nvim/runtime/lua/vim/treesitter/languagetree.lua:494: in function '_run_async_callbacks' ...m/share/nvim/runtime/lua/vim/treesitter/languagetree.lua:550: in function <...m/share/nvim/runtime/lua/vim/treesitter/languagetree.lua:529> ``` - Reproduce script ```lua local bufnr = vim.api.nvim_create_buf(false, true) local many_lines = vim.fn["repeat"]({ "local test = 'a'" }, 100000) vim.api.nvim_buf_set_lines(bufnr, 0, -1, false, many_lines) local window = vim.api.nvim_open_win(bufnr, true, { relative = "editor", row = 0, col = 0, width = 10, height = 10, }) vim.bo.filetype = "lua" vim.schedule(function() vim.api.nvim_win_close(window, true) end) ```
2025-06-08fix(treesitter): support multiple `@injection.content` capturesRiley Bruins1
Before, only the last capture's range would be counted for injection. Now all captured ranges will be counted in the ranges array. This is more intuitive, and also provides a nice solution/alternative to the "scoped injections" issue.
2025-06-08vim-patch:partial:8f7256a (#34368)zeertzjq2
vim-patch:partial:8f7256a: runtime(doc): fix some style issues and remove obsolete docs https://github.com/vim/vim/commit/8f7256a5ee5b827722de4e7524da1c2adb68bbae Co-authored-by: Hirohito Higashi <h.east.727@gmail.com>
2025-06-07fix(treesitter): scope highlight state per window #34347Riley Bruins1
**Problem:** There is a lot of distracting highlight flickering when editing a buffer with multiple open windows. This is because the parsing/highlighting state is shared across all windows. **Solution:** Greatly reduce flicker in window splits by scoping the highlighter state object and the `parsing` state object to each individual window, so there is no cross-window interference.
2025-06-07docs: lua, UI events #34261Justin M. Keyes1
2025-06-06fix: type fixesLewis Russell41
Type fixes caught by emmylua
2025-06-06refactor(treesitter): avoid unnecessarily copying treeRodrigodd1
node:tree() now already copies the tree before returning it, for memory safety reasons.
2025-06-06fix(extui): use visible to determine active "more" (#34327)luukvbaal3
Problem: Current window is checked to determine whether "more" window is open. Making it the current window is scheduled in case the cmdwin is open so this can be too late. "cmdline_hide" may be emitted when the topline is temporarily invalid (after incsearch->restore_viewstate()). Solution: Use the window visibility to determine an active "more" window instead. Don't nvim__redraw->flush the "cmdline_hide" event (a normal will already happen).
2025-06-06fix(lsp): only auto-detach lsp.config enabled clients #34325Kai-Hsiang Hsu1
Problem: A custom server (initialized through `vim.lsp.start`) gets unexpectedly detached. Solution: Only auto-detach the clients enabled through `vim.lsp.enable` to prevent unexpected behavior.
2025-06-05fix(diagnostic): ensure autocmd always is always sent diagnosticsLewis Russell1