| Commit message (Collapse) | Author | Age |
|
|
| |
[skip ci]
|
|\
| |
| | |
feat: restore --remote
|
| | |
|
| | |
|
| | |
|
| |
| |
| |
| | |
Clean up lint errors, too
|
| | |
|
| | |
|
| |
| |
| |
| | |
This also fixes a fair number of issues found in running the tests
|
| | |
|
|/
|
|
|
| |
This is starting from @geekodour's work at
https://github.com/neovim/neovim/pull/8326
|
|\
| |
| | |
refactor: fix all clint warnings from buffer
|
| | |
|
|\ \
| | |
| | | |
refactor: apply uncrustify
|
| | | |
|
| | |
| | |
| | |
| | |
| | | |
Uncrustify version 0.74 has a bug that deindents and misformats the
entire fileio.c.
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
* fix(coverity/349942): structurally dead code
* fix(coverity/331396): operands don't affect result
* fix(coverity/331393): operands don't affect result
* fix(coverity/331392): operands don't affect result
* fix(coverity/331384): operands don't affect result
* fix(coverity/331374): operands don't affect result
* fix(coverity/331372): operands don't affect result
* fix(coverity/331371): operands don't affect result
* fix(coverity/331364): operands don't affect result
* fix(coverity/105585): operands don't affect result
|
|\ \ \
| | | |
| | | | |
refactor(decorations): move provider code
|
| | | |
| | | |
| | | |
| | | |
| | | | |
Now all the decoration provider code is in one place, decor_providers no
longer need to be global.
|
| |/ /
| | |
| | |
| | | |
Move decoration provider code to a separate file.
|
|\ \ \
| | | |
| | | | |
build(deps): bump libuv to 1.44.1
|
| | |/
| |/| |
|
|\ \ \
| |/ /
|/| | |
Better CI error output
|
| | | |
|
| | | |
|
| | |
| | |
| | |
| | |
| | |
| | | |
On GitHub Actions it just repeats the summary that is shown just after.
When run outside of GitHub Actions it erroneously shows the summary of
the previous suites.
|
| | |
| | |
| | |
| | |
| | | |
We always know where in the test we are anyway, it's just needless
repetition.
|
| |/ |
|
|\ \
| | |
| | | |
feat(lua): handle lazy submodules in `:lua vim.` wildmenu completion
|
| | | |
|
|\ \ \
| |_|/
|/| | |
vim-patch:8.2.{3949,3950}: fix two crashes with /\%V
|
| | | |
|
| | |
| | |
| | |
| | |
| | |
| | | |
Problem: Going beyond the end of the line with /\%V.
Solution: Check for valid column in getvcol().
https://github.com/vim/vim/commit/94f3192b03ed27474db80b4d3a409e107140738b
|
|/ /
| |
| |
| |
| |
| | |
Problem: Using freed memory with /\%V.
Solution: Get the line again after getvvcol().
https://github.com/vim/vim/commit/4c13e5e6763c6eb36a343a2b8235ea227202e952
|
|\ \
| | |
| | | |
fix lgtm warnings
|
| | | |
|
| | | |
|
| | |
| | |
| | |
| | |
| | |
| | | |
Co-authored-by: Hongyi Lyu <hongyi.lyu95@gmail.com>
Co-authored-by: Gregory Anders <greg@gpanders.com>
Co-authored-by: notomo <notomo.motono@gmail.com>
Co-authored-by: zeertzjq <zeertzjq@outlook.com>
|
| | | |
|
|\ \ \
| | | |
| | | | |
vim-patch:8.1.{2005,2010}: the regexp.c file is too big
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Problem: The regexp.c file is too big.
Solution: Move the backtracking engine to a separate file. (Yegappan
Lakshmanan, closes vim/vim#4905)
https://github.com/vim/vim/commit/6d7d7cf750bca5d641e464f6a3af5ee5b99a5ac8
vim-patch:8.1.2010: new file uses old style comments
Problem: New file uses old style comments.
Solution: Change to new style comments. (Yegappan Lakshmanan, closes vim/vim#4910)
https://github.com/vim/vim/commit/9490b9a61cf1f1f3fa9758663a33124ea9f71c87
|
|\ \ \ \
| |/ / /
|/| | | |
feat(api): relax statusline fillchar width check
|
|/ / /
| | |
| | |
| | | |
Treat fillchar as single-width even if it isn't.
|
|\ \ \
| | | |
| | | | |
fix(extmarks): fix signs
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Don't add sign extmarks to state->active. Instead when drawing signs,
perform a full line scan for sign marks. This allows decor_redraw_line
to be moved back inside the `!number_only` block in screen.c, which
prevents decor scans when redrawing the number column when
'relativenumber' is set.
Fixes: #17638
|
|\ \ \ \
| | | | |
| | | | | |
chore: align clang-format configuration with clint
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Some additional tweaks to make clang-format more compatible with
`clint.py` rules.
This is especially useful for range-formatting with `clangd`.
|
|\ \ \ \ \
| | | | | |
| | | | | | |
chore(stripdecls): remove unused and no longer functional script
|
| | |_|/ /
| |/| | | |
|
|\ \ \ \ \
| |/ / / /
|/| | | | |
vim-patch:8.1.0999: use register one too often and not properly tested
|