| Commit message (Collapse) | Author | Age |
... | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Problem: Line() only works for the current window.
Solution: Add an optional argument for the window to use.
https://github.com/vim/vim/commit/8e0a8e7eb7c177807f44db6b76d8e52314248ab5
|
|/ / /
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
For the case of Clojure and other Lisp syntax highlighting, it is
necessary to create huge regexps consisting of hundreds of symbols with
the pipe (|) character. To make things more difficult, these Lisp
symbols sometimes consists of special characters that are themselves
part of special regexp characters like '*'. In addition to being
difficult to maintain, it's performance is suboptimal.
This patch introduces a new predicate to perform 'source' matching in
amortized constant time. This is accomplished by compiling a hash table
on the first use.
|
|/ /
| |
| |
| |
| |
| |
| |
| |
| | |
like a pattern (#12784)"
This reverts commit 4be0e92db01a502863ac4bb26dd0fee16d833145.
Unfortunately, that commit stalled the Windows builds on GHA and likely requires
other patches to work properly.
|
|\ \
| | |
| | | |
API: Adding cterm support to nvim_set_hl
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
|\ \ \
| | | |
| | | | |
vim-patch:8.2.{0174,1933,1935,1946,2286,2287}
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Problem: Various commands not completely tested.
Solution: Add more test cases. (Yegappan Lakshmanan, closes vim/vim#5551)
https://github.com/vim/vim/commit/5d98dc2a48156d44139b75c689bd3137ff7fe8bf
|
|\ \ \ \
| | | | |
| | | | | |
vim-patch:8.1.{1418,1425,1832,2124},8.2.{0137, 2340}
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Problem: Win_execute() is not implemented yet.
Solution: Implement it.
https://github.com/vim/vim/commit/868b7b6712ea4f2232eeeae18c5cbbbddf2ee84d
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
pattern (#12784)
Problem: Delete() can not handle a file name that looks like a pattern.
Solution: Use readdir() instead of appending "/*" and expanding wildcards.
(Ken Takata, closes vim/vim#4424, closes vim/vim#696)
https://github.com/vim/vim/commit/701ff0a3e53d253d7300c385e582659bbff7860d
|
|\ \ \ \ \
| |_|_|_|/
|/| | | | |
Splice extmarks on every line for block visual paste
|
| | | | | |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Various Coverity fixes
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Since the providers are ordered by ns_id, inserting a new provider may
require shifting existing providers around to maintain this ordering.
When this happens, we need to allocate a new element at the end of the
vector and then shift the larger elements to the right. Rather than
iterating (incorrectly) with a loop and copying each item, use memmove
to copy the entire block.
|
|/ / / / / |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
window.c: fix floating window border width calculation
|
| | |_|/ /
| |/| | |
| | | | |
| | | | | |
extends past viewport
|
|\ \ \ \ \
| | | | | |
| | | | | | |
vim-patch:8.1.1726,8.2.{296,860,1827,2388,2788,2790,2801}
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Update runtime files.
https://github.com/vim/vim/commit/ebdf3c964a901fc00c9009689f7cfda478342c51
Omit vim9.
|
|\ \ \ \ \ \
| |_|_|/ / /
|/| | | | | |
[RDY] tree-sitter ensure there is a nested table allocated for `#set!`
|
| |/ / / /
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Fixes the following bug:
```
test/functional/helpers.lua:107: Error executing lua:
vim/treesitter/query.lua:256: attempt to index a nil value
```
|
|/ / / / |
|
| |/ /
|/| |
| | |
| | |
| | | |
problem: the order of non-focuesed float opened before focused float is wrong (sunjon)
solution: check curwin and correct the order (bfredl)
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
This commit prevents two things regarding the tagstack and jumping to
locations:
- Pushing the same item twice in a row
- Pushing an item where the destination is the same as the source
Both prevent having to press CTRL-T additional times just to pop items
that don't make the cursor move.
|
|/ /
| |
| |
| |
| | |
Previously nvim_exec would silent output no matter whether output
is true or false.
Now output is only silent and captured when output is true.
|
|\ \
| | |
| | | |
Handle 'orphaned signs' on line deletion for signcolumn >= 2
|
| | | |
|
|\ \ \
| | | |
| | | | |
Extmarks: remove `curbuf->deleted_bytes2` from `op_delete`
|
| | | | |
|
|\ \ \ \
| |_|/ /
|/| | | |
Extmarks: flush curbuf->deleted_bytes2 after calling do_move
|
| |/ / |
|
| | | |
|
|\ \ \
| | | |
| | | | |
decoration: Clean up duplicate Decoration attributes + bonus hl_eol flag
|
| | | | |
|
| | | |
| | | |
| | | |
| | | |
| | | | |
The rpc layer normalizes `vim.NIL` to `nil`, so the scenario tested
should never happen.
|
| |/ /
|/| |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
There were a couple of reports of "Buffer X newer than edits" problems.
We first assumed that it is incorrect for a server to send 0 as a
version - and stated that they should send a `null` instead, given that
in the specification the `textDocument` of a `TextDocumentEdit` is a
`OptionalVersionedTextDocumentIdentifier`.
But it turns out that this was a change in 3.16, and in 3.15 and earlier
versions of the specification it was a `VersionedTextDocumentIdentifier`
and language servers didn't have a better option than sending `0` if
they don't keep track of the version numbers.
So this changes the version check to always accept `0` values.
See
- https://github.com/neovim/neovim/issues/12970
- https://github.com/neovim/neovim/issues/14256
- https://github.com/haskell/haskell-language-server/pull/1727
|
|\ \ \
| | | |
| | | |
| | | |
| | | | |
nvim-treesitter/feature/language-tree-directive-config
feat(treesitter): allow injections to be configured through directives
|
| | | | |
|
|\ \ \ \
| | | | |
| | | | | |
extmark: splice extmarks on :luado
|
| |/ / / |
|
| |/ /
|/| |
| | |
| | |
| | |
| | | |
It looks solid with the default `FloatBorder` group.
If you set the bgcolor of FloatBorder to the same color as for FloatNormal, you
effectively get an "1-cell padding".
|
| | | |
|
|\ \ \
| | | |
| | | | |
extmark: correct extmark_splice call with substitute and inccommand when replacing with escaped backslashes
|
| |/ / |
|
|\ \ \
| | | |
| | | | |
Some small cleanups/diagnostic improvements
|