Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | options.lua: add short descriptions (#6288) | Matthieu Coudron | 2020-11-11 |
| | | | | | | 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`. | ||
* | Merge pull request #13266 from jamessan/pvs-check | James McCoy | 2020-11-10 |
|\ | |||
| * | Add PVS comment to new source files | James McCoy | 2020-11-10 |
| | | |||
| * | pvs: Exclude xdiff from analysis and comment munging | James McCoy | 2020-11-10 |
| | | |||
| * | Use the free PVS-Studio license | James McCoy | 2020-11-10 |
|/ | | | | | As of release 7.10, PVS Studio requires a license, even for the "check me" comment based analyzing. | ||
* | Merge pull request #13263 from jamessan/tree-sitter-detect | James McCoy | 2020-11-09 |
|\ | | | | | Align naming of FindTreeSitter cmake file and variables | ||
| * | Align naming of FindTreeSitter cmake file and variables | James McCoy | 2020-11-09 |
| | | | | | | | | | | | | | | | | `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 | ||
* | | Update the differences with Vim. (#13239) | Yegappan Lakshmanan | 2020-11-09 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | :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 | ||
* | | Merge pull request #13244 from tk-shirasaka/fix/multigrid-click-foldcolumn | Matthieu Coudron | 2020-11-10 |
|\ \ | |/ |/| | ui: Fix click on foldcolumn when ext_multigrid is enabled | ||
| * | Fix alignment issue | Shirasaka | 2020-11-10 |
| | | |||
| * | Add test case for fold on multigrid | shirasaka | 2020-11-09 |
| | | |||
| * | ui: Fix click on foldcolumn when ext_multigrid is enabled | Shirasaka | 2020-11-09 |
| | | |||
* | | Merge pull request #13205 from romgrk/add-bufmodified-autocmd | Björn Linse | 2020-11-09 |
|\ \ | | | | | | | Implement BufModifiedSet autocmd | ||
| * | | test: update BufModifiedSet to be paranoid | Rom Grk | 2020-11-09 |
| | | | |||
| * | | fix: address issues for BufModifiedSet | Rom Grk | 2020-11-09 |
| | | | |||
| * | | doc: add BufModifiedSet | Rom Grk | 2020-11-07 |
| | | | |||
| * | | test: fix BufModifiedSet | Rom Grk | 2020-11-07 |
| | | | |||
| * | | tests: add functional test for BufModifiedSet | Rom Grk | 2020-11-07 |
| | | | |||
| * | | fix: finish renaming to BufModifiedSet | Rom Grk | 2020-11-07 |
| | | | |||
| * | | fix: rename to BufModifiedSet | Rom Grk | 2020-11-07 |
| | | | |||
| * | | feat: implement BufModified autocmd | Rom Grk | 2020-11-07 |
| | | | |||
* | | | gcc/analyzer: fix false positives for NULL (#13248) | Jan Edmund Lazo | 2020-11-08 |
| | | | | | | | | | Close https://github.com/neovim/neovim/issues/13158 | ||
* | | | Merge pull request #13255 from janlazo/pvs-547-560 | Jan Edmund Lazo | 2020-11-08 |
|\ \ \ | |_|/ |/| | | pvs: fix v547, v560 errors | ||
| * | | pvs/v547: comment out code for 'adjustment == 1' | Jan Edmund Lazo | 2020-11-08 |
| | | | | | | | | | | | | | | | | | | | | | That code never runs. Comment it out in case that it is required for debugging marktree.c. Use 'const' to mark constant variables. | ||
| * | | pvs/v560: decoration item is always truthy | Jan Edmund Lazo | 2020-11-08 |
| | | | |||
| * | | pvs/v547: remove useless ternary for string size | Jan Edmund Lazo | 2020-11-08 |
|/ / | |||
* | | Merge pull request #13253 from theHamsta/fix-baselang-order | Thomas Vigouroux | 2020-11-08 |
|\ \ | | | | | | | tree-sitter: Put base languages first in queries | ||
| * | | tree-sitter: Put base languages first in queries | Stephan Seitz | 2020-11-08 |
|/ / | | | | | | | | | | | | | | | 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 | ||
* | | lsp: fix formatting_sync with multiple clients (#13233) | francisco souza | 2020-11-07 |
| | | | | | | | | | | | | | | | | 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> | ||
* | | vim-patch:8.2.1964: not all ConTeXt files are recognized (#13245) | champignoom | 2020-11-07 |
| | | | | | | | | | | Problem: Not all ConTeXt files are recognized. Solution: Add two patterns. (closes vim/vim#7263) https://github.com/vim/vim/commit/faebda8cc1ecc4d6a197e06e968df46a2841ed79 | ||
* | | Add v:event flag on DirChanged signaling switching window (#13153) | Andrea Cedraro | 2020-11-07 |
|/ | | | Closes #9909 | ||
* | Merge pull request #13241 from bfredl/decoration | Björn Linse | 2020-11-07 |
|\ | | | | | decoration: split out "decoration" from "extmark" module | ||
| * | decoration: split out "decoration" from "extmark" module | Björn Linse | 2020-11-07 |
| | | | | | | | | | | Decorations will only grow more complex. move the to a separate file, so that extmark.c remains about extmarks. | ||
* | | Merge pull request #13117 from romgrk/add-scroll-events | Björn Linse | 2020-11-07 |
|\ \ | |/ |/| | Implement scroll autocommand | ||
| * | doc: fix WinScrolled details | Rom Grk | 2020-11-07 |
| | | |||
| * | fix: lint doc-comments | Rom Grk | 2020-11-07 |
| | | |||
| * | my fight with the linter (tome II) | Rom Grk | 2020-11-06 |
| | | |||
| * | my fight with the linter | Rom Grk | 2020-11-06 |
| | | |||
| * | Merge branch 'master' into add-scroll-events | Rom Grk | 2020-11-03 |
| |\ | |||
| * | | fix: remove xxx comment | Rom Grk | 2020-11-01 |
| | | | |||
| * | | tests: separate scroll test for horizontal/vertical scroll | Rom Grk | 2020-10-31 |
| | | | |||
| * | | tests: make scroll tests pass | Rom Grk | 2020-10-30 |
| | | | |||
| * | | doc: update doc: s/Scroll/WinScrolled/ | Rom Grk | 2020-10-28 |
| | | | |||
| * | | tests: add functional test for WinScrolled | Rom Grk | 2020-10-28 |
| | | | |||
| * | | feat: implement a working WinScrolled autocmd | Rom Grk | 2020-10-28 |
| | | | |||
| * | | move.c: dont invalidate viewport when no scroll happened | Rom Grk | 2020-10-25 |
| | | | |||
| * | | scroll: use win->w_viewport_invalid | Rom Grk | 2020-10-24 |
| | | | |||
| * | | tests: add test for Scroll autocmd | Rom Grk | 2020-10-24 |
| | | | |||
| * | | docs: add documentation for Scroll autocmd | Rom Grk | 2020-10-24 |
| | | | |||
| * | | scroll: cleanup unnecessary code & comments | Rom Grk | 2020-10-24 |
| | | |