summaryrefslogtreecommitdiffstatshomepage
path: root/runtime/lua/vim
AgeCommit message (Collapse)AuthorFiles
2023-09-19Merge pull request #25148 from glepnir/fixed_optbfredl2
fix(float): add fixed option
2023-09-19refactor(grid): change schar_T representation to be more compactbfredl1
Previously, a screen cell would occupy 28+4=32 bytes per cell as we always made space for up to MAX_MCO+1 codepoints in a cell. As an example, even a pretty modest 50*80 screen would consume 50*80*2*32 = 256000, i e a quarter megabyte With the factor of two due to the TUI side buffer, and even more when using msg_grid and/or ext_multigrid. This instead stores a 4-byte union of either: - a valid UTF-8 sequence up to 4 bytes - an escape char which is invalid UTF-8 (0xFF) plus a 24-bit index to a glyph cache This avoids allocating space for huge composed glyphs _upfront_, while still keeping rendering such glyphs reasonably fast (1 hash table lookup + one plain index lookup). If the same large glyphs are using repeatedly on the screen, this is still a net reduction of memory/cache consumption. The only case which really gets worse is if you blast the screen full with crazy emojis and zalgo text and even this case only leads to 4 extra bytes per char. When only <= 4-byte glyphs are used, plus the 4-byte attribute code, i e 8 bytes in total there is a factor of four reduction of memory use. Memory which will be quite hot in cache as the screen buffer is scanned over in win_line() buffer text drawing A slight complication is that the representation depends on host byte order. I've tested this manually by compling and running this in qemu-s390x and it works fine. We might add a qemu based solution to CI at some point.
2023-09-18fix(float): add fixd optionglepnir2
2023-09-17vim-patch:9.0.1907: No support for liquidsoap filetypesChristian Clason1
Problem: No support for liquidsoap filetypes Solution: Add liquidsoap filetype detection code closes: vim/vim#13111 https://github.com/vim/vim/commit/6b5efcdd8e976d2ab2554b22c4220c5e88de4717 Co-authored-by: Romain Beauxis <toots@rastageeks.org>
2023-09-17fix(treesitter): _trees may not be list-likeJaehwang Jung2
Problem: With incremental injection parsing, injected languages' parsers parse only the relevant regions and stores the result in _trees with the index of the corresponding region. Therefore, there can be holes in _trees. Solution: * Use generic table functions where appropriate. * Fix type annotations and docs.
2023-09-17fix(lua): not using global value in vim.opt_global (#25196)Phelipe Teles1
2023-09-16feat(treesitter): add lang parameter to the query editor (#25181)Maria José Solano2
2023-09-16fix(treesitter): properly combine injection.combined regionsJaehwang Jung1
Problem: It doesn't make much sense to flatten each region (= list of ranges). This coincidentally worked for region with a single range. Solution: Custom function for combining regions.
2023-09-16fix(treesitter): fix trim predicateLewis Russell1
2023-09-16fix(typing): vim.fn.executeLewis Russell1
2023-09-16perf(treesitter): do not scan past given line for predicate matchL Lllvvuu2
Problem --- If a highlighter query returns a significant number of predicate non-matches, the highlighter will scan well past the end of the window. Solution --- In the iterator returned from `iter_captures`, accept an optional parameter `end_line`. If no parameter provided, the behavior is unchanged, hence this is a non-invasive tweak. Fixes: #25113 nvim-treesitter/nvim-treesitter#5057
2023-09-16fix(languagetree): apply `resolve_lang` to `metadata['injection.language']`L Lllvvuu1
`resolve_lang` is applied to `@injection.language` when it's supplied as a capture: https://github.com/neovim/neovim/blob/f5953edbac14febce9d4f8a3c35bdec1eae26fbe/runtime/lua/vim/treesitter/languagetree.lua#L766-L768 If we want to support `metadata['injection.language']` (as per #22518 and [tree-sitter upstream](https://tree-sitter.github.io/tree-sitter/syntax-highlighting#language-injection)) then the behavior should be consistent. Fixes: nvim-treesitter/nvim-treesitter#4918
2023-09-15refactor(treesitter): remove duplicated diagnostic code (#24976)Maria José Solano1
* refactor(treesitter): remove duplicated diagnostic code * fixup!: fix type errors * fixup!: add type namespace
2023-09-15refactor(treesitter): rename "preview" => "edit" #25161Maria José Solano3
"Edit" more closely describes the generic application than "Preview", though the buffer contents don't (yet) map to an actual file on disk. https://github.com/neovim/neovim/pull/24703#discussion_r1321719133
2023-09-14docs: replace <pre> with ``` (#25136)Gregory Anders27
2023-09-14refactor(treesitter): deprecate for_each_child #25118LW1
The name for_each_child is misleading and caused bugs. After #25111, #25115, there are no more usages of `for_each_child` in Nvim. In the future if we want to restore this functionality we can consider a generalized vim.traverse(node, key, visitor) function.
2023-09-14fix(treesitter): `language.add` - only register parser if it existsL Lllvvuu1
Fixes: #24531
2023-09-14feat(lsp): remove notify from vim.lsp.buf_detach_client (#25140)Mathias Fußenegger1
Closes https://github.com/neovim/neovim/issues/19838
2023-09-14docs: fix typos and other small fixes (#25005)dundargoc4
Co-authored-by: nuid64 <lvkuzvesov@proton.me> Co-authored-by: Mike Smith <10135646+mikesmithgh@users.noreply.github.com> Co-authored-by: XTY <xty@xty.io> Co-authored-by: Empa <emanuel@empa.xyz> Co-authored-by: kyu08 <49891479+kyu08@users.noreply.github.com>
2023-09-13feat(vimdoc): support Markdown code blocks (#25127)Gregory Anders1
Support Markdown code blocks in addition to <pre> blocks in Doxygen doc comments. Update doc comments in iter.lua as a test.
2023-09-13fix(treesitter): don't update fold if tree is unchangedJaehwang Jung1
Problem: Folds are opened when the visible range changes even if there are no modifications to the buffer, e.g, when using zM for the first time. If the parsed tree was invalid, on_win re-parses and gets empty tree changes, which triggers fold updates. Solution: Don't update folds in on_changedtree if there are no changes.
2023-09-12fix(treesitter): fixup for InspectTreeLewis Russell1
Fixes #25120
2023-09-12fix(treesitter): remove more double recursionLewis Russell2
Do not call `for_each_child` in functions that are already recursive.
2023-09-12feat(extmark): support proper multiline rangesbfredl3
The removes the previous restriction that nvim_buf_set_extmark() could not be used to highlight arbitrary multi-line regions The problem can be summarized as follows: let's assume an extmark with a hl_group is placed covering the region (5,0) to (50,0) Now, consider what happens if nvim needs to redraw a window covering the lines 20-30. It needs to be able to ask the marktree what extmarks cover this region, even if they don't begin or end here. Therefore the marktree needs to be augmented with the information covers a point, not just what marks begin or end there. To do this, we augment each node with a field "intersect" which is a set the ids of the marks which overlap this node, but only if it is not part of the set of any parent. This ensures the number of nodes that need to be explicitly marked grows only logarithmically with the total number of explicitly nodes (and thus the number of of overlapping marks). Thus we can quickly iterate all marks which overlaps any query position by looking up what leaf node contains that position. Then we only need to consider all "start" marks within that leaf node, and the "intersect" set of that node and all its parents. Now, and the major source of complexity is that the tree restructuring operations (to ensure that each node has T-1 <= size <= 2*T-1) also need to update these sets. If a full inner node is split in two, one of the new parents might start to completely overlap some ranges and its ids will need to be moved from its children's sets to its own set. Similarly, if two undersized nodes gets joined into one, it might no longer completely overlap some ranges, and now the children which do needs to have the have the ids in its set instead. And then there are the pivots! Yes the pivot operations when a child gets moved from one parent to another.
2023-09-12fix(languagetree): remove double recursion in LanguageTree:parseL Lllvvuu1
`LanguageTree:parse` is recursive, and calls `LanguageTree:for_each_child`, which is also recursive. That means that, starting from the third level (child of child of root), nodes will be parsed twice. Which then means that if the tree is N layers deep, there will be ~2^N parses even if the branching factor is 1. Now, why was the tree deepening with each character inserted? And why did this only regress in #24647? These are mysteries for another time. Fixes: #25104
2023-09-11fix(decorations): better approximation of botline #24794Jaehwang Jung2
Problem: * The guessed botline might be smaller than the actual botline e.g. when there are folds and the user is typing in insert mode. This may result in incorrect treesitter highlights for injections. * botline can be larger than the last line number of the buffer, which results in errors when placing extmarks. Solution: * Take a more conservative approximation. I am not sure if it is sufficient to guarantee correctness, but it seems to be good enough for the case mentioned above. * Clamp it to the last line number. Co-authored-by: Lewis Russell <me@lewisr.dev>
2023-09-11Merge pull request #24901 from faergeek/more-intuitive-cursor-updatebfredl2
fix(api): more intuitive cursor updates in nvim_buf_set_text
2023-09-11vim-patch:9.0.1891: No runtime support for MojoChristian Clason1
Problem: No runtime support for Mojo Solution: Add basic filetype and syntax plugins closes: vim/vim#13062 closes: vim/vim#13063 https://github.com/vim/vim/commit/0ce2c594d0704f27a16d2c13fce85d596cc91489 Co-authored-by: Mahmoud Abduljawad <mahmoud@masaar.com>
2023-09-11fix(api): more intuitive cursor updates in nvim_buf_set_textSergey Slipchenko2
Fixes #22526
2023-09-10feat(lsp): improve control over placement of floating windows (#24494)Grace Petryk2
2023-09-09fix(highlight): add create param in nvim_get_hlglepnir2
2023-09-08feat(runtime): highlight hl groups in syntax.txt (#25050)zeertzjq1
- Add runtime/lua/vim/vimhelp.lua, which is a translation of Vim's runtime/import/dist/vimhelp.vim. - Unlike Vim, run the highlighting from an ftplugin file instead of a syntax file, so that it is run even if using treesitter.
2023-09-07feat(lsp): add original LSP Location as item's user_data in ↵Tom Praschan1
locations_to_items (#23743)
2023-09-06fix(diagnostic): always return copies of diagnostic items (#25010)Evgeni Chasnovski1
2023-09-05fix: windows timeouts have exit code 1Lewis Russell1
2023-09-05refactor(vim.system): factor out on_exit handlingLewis Russell4
2023-09-05fix(vim.system): make timeout work properlyLewis Russell2
Mimic the behaviour of timeout(1) from coreutils.
2023-09-05fix(vim.system): let on_exit handle cleanup after killLewis Russell1
Fixes #25000
2023-09-04build: bump lpeg to 1.1.0 (#25016)dundargoc1
Release notes indicates it has better UTF8 handling which is relevant for us.
2023-09-04vim-patch:9.0.1856: issues with formatting positional arguments (#25013)zeertzjq1
Problem: issues with formatting positional arguments Solution: fix them, add tests and documentation closes: vim/vim#12140 closes: vim/vim#12985 Tentatively fix message_test. Check NULL ptr. https://github.com/vim/vim/commit/aa90d4f031f73a34aaef5746931ea746849a2231 Co-authored-by: Christ van Willegen <cvwillegen@gmail.com>
2023-09-01fix(lsp): wrong iterator in registerCapability handler (#24971)TheBlob421
2023-08-31refactor(lsp): add type annotation for lsp.Client.server_capabilities (#24925)Jongwook Choi1
The class `lsp.Client` has a public member `server_capabilities`, which is assumed to be non-nil once initialized, as documented in `:help vim.lsp.client`. Due to the possibility that it may be nil before initialization, `lsp.Client` was not having a proper lua type annotations on the field `server_capabilities`. Instead of having a nil `server_capabilities` until initialized in the RPC response callback, we can have an initial value of empty table. This CHANGES the behavior of the `server_capabilities` field in a way that it is no longer `nil` until initialization. Note that, as already documented, `server_capabilities` should never be nil when it is once initialized and thus ready to be used in user configs.
2023-08-31fix(lsp): only disable inlay hints / diagnostics if no other clients are ↵Chris AtLee4
connected (#24535) This fixes the issue where the LspNotify handlers for inlay_hint / diagnostics would end up refreshing all attached clients. The handler would call util._refresh, which called vim.lsp.buf_request, which calls the method on all attached clients. Now util._refresh takes an optional client_id parameter, which is used to specify a specific client to update. This commit also fixes util._refresh's handling of the `only_visible` flag. Previously if `only_visible` was false, two requests would be made to the server: one for the visible region, and one for the entire file. Co-authored-by: Stanislav Asunkin <1353637+stasjok@users.noreply.github.com> Co-authored-by: Mathias Fußenegger <mfussenegger@users.noreply.github.com>
2023-08-31vim-patch:9.0.1820: Rexx files may not be recognised (#24956)zeertzjq1
Problem: Rexx files may not be recognised Solution: Add shebang detection and improve disambiguation of *.cls files closes: vim/vim#12951 https://github.com/vim/vim/commit/e06afb7860805537ccd69966bc03169852c9b378 Co-authored-by: Doug Kearns <dougkearns@gmail.com>
2023-08-31vim-patch:9.0.1797: Vimball/Visual Basic filetype detection conflict (#24947)zeertzjq2
Problem: Vimball/Visual Basic filetype detection conflict Solution: runtime(vb): Improve Vimball and Visual Basic detection logic Only run Vimball Archiver's BufEnter autocommand on Vimball archives. Fixes vim/vim#2694. closes: vim/vim#12899 https://github.com/vim/vim/commit/f97f6bbf56408c0c97b4ddbe81fba858d7455b0d Co-authored-by: Doug Kearns <dougkearns@gmail.com>
2023-08-31vim-patch:9.0.1807: runtime: crystal scripts not recognised (#24949)zeertzjq1
Problem: runtime: crystal scripts not recognised Solution: Filetype detect Crystal scripts by shebang line closes: vim/vim#12935 https://github.com/vim/vim/commit/9b73902dbe6f7940326bcd8dbc89d010d85d69c5 Co-authored-by: Doug Kearns <dougkearns@gmail.com>
2023-08-31vim-patch:9.0.1803: runtime(filetype): Add norg language detection (#24948)zeertzjq1
runtime(filetype): Add norg markup language detection closes: vim/vim#12913 https://github.com/vim/vim/commit/03e44a1d70e914504e6151fe88ad1e574cbf0a59 Co-authored-by: NTBBloodbath <bloodbathalchemist@protonmail.com>
2023-08-30fix(builtin): fix incorrect optional fields for fn.sign_defineJongwook Choi1
The field `icon` is not a mandatory field.
2023-08-29fix(treesitter): update folds only once on InsertLeaveJaehwang Jung1
Problem: With treesitter fold, InsertLeave can be slow, because a single session of insert mode may schedule multiple fold updates in on_bytes and on_changedtree. Solution: Don't create duplicate autocmds.
2023-08-27feat(builtin): improve typesLewis Russell2