| Commit message (Collapse) | Author | Age |
|
|
|
|
| |
lualint requires building dependencies, so allow the job to take
advantage of the cache.
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|\
| |
| | |
vim-patch:8.2.{1972,1973,1974}
|
| |
| |
| |
| |
| |
| | |
Problem: Finding a patch number can be a bit slow.
Solution: Use binary search. (closes vim/vim#7279)
https://github.com/vim/vim/commit/232f4612e2b0a6a205ae385740078f6b8af05e75
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Problem: Crash when recreating nested fold.
Solution: Check for empty growarray. (closes vim/vim#7278)
https://github.com/vim/vim/commit/5e1f22ff614821b8fc7294c9dd22765acd403aeb
N/A patches for version.c:
vim-patch:8.2.1974: Vim9: test for has('gui_running') fails with VIMDLL
Problem: Vim9: test for has('gui_running') fails with VIMDLL.
Solution: Adjust the #ifdef. (Ken Takata, closes vim/vim#7276)
https://github.com/vim/vim/commit/29b281ba8ddf176ae34b22e6a9b8e0ddcbcce665
|
|\ \
| |/
|/| |
Removed restricted mode - Fix #11972
|
|/ |
|
|
|
|
|
|
| |
add one-liner option descriptions in src/nvim/options.lua
They are taken from optwin.vim and should be easier to use in a
programmatic manner, for instance in a "palette", like in telescope
`:Telescope vim_options`.
|
|\ |
|
| | |
|
| | |
|
|/
|
|
|
| |
As of release 7.10, PVS Studio requires a license, even for the "check
me" comment based analyzing.
|
|\
| |
| | |
Align naming of FindTreeSitter cmake file and variables
|
| |
| |
| |
| |
| |
| |
| |
| | |
`find_package(Foo ...)` expects to find a file FindFoo.cmake and the
resulting variables to be named `Foo_...`. If those don't all match up,
then the detection does not work properly.
Closes #13262
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
:cquit can use count to set the exit code
patch 8.2.0095: cannot specify exit code for :cquit
:tchdir tab-local current-directory
patch 8.1.1218: cannot set a directory for a tab page
Autocmd Events:
- DirChanged
patch 8.0.1459: cannot handle change of directory
- TextYankPost
patch 8.0.1394: cannot intercept a yank command
tabpagenr() "#" argument
g<Tab> goes to the last-accessed tabpage.
patch 8.2.1401: cannot jump to the last used tabpage
hl-QuickFixLine
patch 8.0.0641: cannot set a separate highlighting for the quickfix line
v:event
patch 8.0.1394: cannot intercept a yank command
K in help documents can be used like CTRL-].
Updated as part of a runtime update.
https://github.com/vim/vim/commit/4c05fa08c9739e307ddc88ac91ba6d208f1fd68e
|
|\ \
| |/
|/| |
ui: Fix click on foldcolumn when ext_multigrid is enabled
|
| | |
|
| | |
|
| | |
|
|\ \
| | |
| | | |
Implement BufModifiedSet autocmd
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | |
| | |
| | | |
Close https://github.com/neovim/neovim/issues/13158
|
|\ \ \
| |_|/
|/| | |
pvs: fix v547, v560 errors
|
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
That code never runs.
Comment it out in case that it is required for debugging marktree.c.
Use 'const' to mark constant variables.
|
| | | |
|
|/ / |
|
|\ \
| | |
| | | |
tree-sitter: Put base languages first in queries
|
|/ /
| |
| |
| |
| |
| |
| |
| | |
This reverts the handling of base languages to the old way how
nvim-treesitter handled them. When a language extends a base language
it usually wants to be able to overwrite queries.
Related: https://github.com/nvim-treesitter/nvim-treesitter/issues/633
|
| |
| |
| |
| |
| |
| |
| |
| | |
buf_request_sync returns a table indexed by the client id, so when
starting a second client on a separate buffer, result[1] will be nil.
Closes #13232.
Co-authored-by: francisco souza <fsouza@users.noreply.github.com>
|
| |
| |
| |
| |
| | |
Problem: Not all ConTeXt files are recognized.
Solution: Add two patterns. (closes vim/vim#7263)
https://github.com/vim/vim/commit/faebda8cc1ecc4d6a197e06e968df46a2841ed79
|
|/
|
| |
Closes #9909
|
|\
| |
| | |
decoration: split out "decoration" from "extmark" module
|
| |
| |
| |
| |
| | |
Decorations will only grow more complex. move the to a separate
file, so that extmark.c remains about extmarks.
|
|\ \
| |/
|/| |
Implement scroll autocommand
|
| | |
|
| | |
|