Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | test(lua/hl_spec): set timeout for transient state (#32169) | zeertzjq | 2025-01-23 |
| | |||
* | feat(lua): vim.hl.range() "timeout" #32012 | Siddhant Agarwal | 2025-01-22 |
| | | | | | | | | Problem: `vim.hl.on_yank()` has a "timeout" behavior but this is not available for `vim.hl.range()`. Solution: Add `timeout` arg to `vim.hl.range()`. | ||
* | refactor: use nvim.foo.bar format for namespaces | Maria José Solano | 2025-01-14 |
| | |||
* | fix(tests): needing two calls to setup a screen is cringe | bfredl | 2024-11-14 |
| | | | | | | | | | | Before calling "attach" a screen object is just a dummy container for (row, col) values whose purpose is to be sent as part of the "attach" function call anyway. Just create the screen in an attached state directly. Keep the complete (row, col, options) config together. It is still completely valid to later detach and re-attach as needed, including to another session. | ||
* | refactor: rename vim.highlight => vim.hl | Justin M. Keyes | 2024-10-21 |
Problem: - `vim.highlight` module does not follow `:help dev-name-common`, which documents the name for "highlight" as "hl". - Shorter names are usually preferred. Solution: Rename `vim.highlight` to `vim.hl`. This is not a breaking change until 2.0 (or maybe never). |