aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
...
| * | | | added perleval() documentationJacques Germishuys2020-09-03
| | | | |
| * | | | document that the perl legacy interface is now also supportedJacques Germishuys2020-09-03
| | | | |
| * | | | document that the perl provider doesn't currently work on WindowsJacques Germishuys2020-08-30
| | | | |
| * | | | support for :perl, :perlfile, :perldo and perleval()Jacques Germishuys2020-08-30
| | | | |
* | | | | Merge pull request #12838 from bfredl/screenshotBjörn Linse2020-09-05
|\ \ \ \ \ | | | | | | | | | | | | nvim__screenshot
| * | | | | nvim__screenshotBjörn Linse2020-09-05
| | |/ / / | |/| | |
* / | | | vim-patch:8.2.1586: :resize command not fully tested (#12853)Jan Edmund Lazo2020-09-05
|/ / / / | | | | | | | | | | | | | | | | Problem: :resize command not fully tested. Solution: Add a couple of tests. (Dominique Pellé, closes vim/vim#6857) https://github.com/vim/vim/commit/fe6dce873954a216eedb686bd5006710ffff4b89
* | | | Merge pull request #12788 from bfredl/nulloffset-1Björn Linse2020-09-05
|\ \ \ \ | | | | | | | | | | robustness: avoid adding offset to NULL pointer
| * | | | robustness: avoid adding offset to NULL pointerBjörn Linse2020-09-04
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | UBSAN with clang 10.0 is checking for adding offsets to a `NULL` pointer which is not allowed. This is not yet checked in the version of clang used in CI (7.0.0). I will work on cases of this so that tests passes locally for me. This could be tested in CI by either upgrading the clang of the ASAN/UBSAN to 10.0, or add yet another CI target which builds with clang 10.0.
| * | | | treesitter: update runtimeBjörn Linse2020-09-04
|/ / / /
* | | | Merge pull request #12850 from bfredl/oopsieBjörn Linse2020-09-04
|\ \ \ \ | | | | | | | | | | API: be less breaking in the decorations
| * | | | API: be less breaking in the christmas tree decorationsBjörn Linse2020-09-04
|/ / / /
* | | | Merge pull request #12847 from nvim-treesitter/ts-list-predicatesBjörn Linse2020-09-04
|\ \ \ \ | |_|/ / |/| | | treesitter: allow to list supported predicates
| * | | treesitter: allow to list supported predicatesThomas Vigouroux2020-09-04
| | | |
* | | | Merge pull request #12816 from vigoux/decorationsBjörn Linse2020-09-04
|\ \ \ \ | | | | | | | | | | New Decorations API (not finalized, but we gonna build on this)
| * | | | treesitter: update to use buf_set_extmarkThomas Vigouroux2020-09-03
| | | | |
| * | | | decor: sketch new decorations APIBjörn Linse2020-09-03
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | return decorations back lol no nvim_buf_get_virtual_text share decorations that are hl only to avoid alloc avalanche
| * | | | extmark: move id to dict in nvim_buf_set_extmarkBjörn Linse2020-09-03
| | | | |
| * | | | extmark: refiy "Decoration" abstractionBjörn Linse2020-09-03
| |/ / / | | | | | | | | | | | | one very important thought
* | | | Merge pull request #12848 from jamessan/vim-8.2.1552James McCoy2020-09-04
|\ \ \ \ | |/ / / |/| | |
| * | | vim-patch.sh: Fix PR subject with multiple patchesJames McCoy2020-09-04
| | | |
| * | | lintJames McCoy2020-09-04
| | | |
| * | | vim-patch:8.2.1560: using NULL pointers in some codeJames McCoy2020-09-04
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Problem: Using NULL pointers in some code. (James McCoy) Solution: Avoid adding to a NULL pointer. Use byte as unsigned. https://github.com/vim/vim/commit/9c2b06637b32742cac11bfd66b1a4e84583c6c2e The changes to eval.c (skip_expr_concatenate) and vim9compile.c aren't included since they're specific to vim9script support.
| * | | vim-patch:8.2.1553: crash in edit testJames McCoy2020-09-04
| | | | | | | | | | | | | | | | | | | | | | | | Problem: Crash in edit test. Solution: Avoid using invalid pointer. https://github.com/vim/vim/commit/2c93c685e3334c50d9a748ad699df727a4501b08
| * | | vim-patch:8.2.1552: warnings from asan with clang-11James McCoy2020-09-03
|/ / / | | | | | | | | | | | | | | | Problem: Warnings from asan with clang-11. (James McCoy) Solution: Avoid using a NULL pointer. (issue vim/vim#6811) https://github.com/vim/vim/commit/64f37d309025a65210dbc33823ec9ec5d547775f
* | | Merge #12827 'vim-patch:8.2.{1554,1561,1564,1565,1566}'Justin M. Keyes2020-09-02
|\ \ \
| * | | vim-patch:8.2.1564: a few remaining errors from ubsanJan Edmund Lazo2020-09-02
| | | | | | | | | | | | | | | | | | | | | | | | Problem: A few remaining errors from ubsan. Solution: Avoid the warnings. (Dominique Pellé, closes vim/vim#6837) https://github.com/vim/vim/commit/4ad739fc053c1666d07ba1cf59be26cb1c3e52d7
| * | | vim-patch:8.2.1566: not all Bazel files are recognizedJan Edmund Lazo2020-09-02
| | | | | | | | | | | | | | | | | | | | | | | | Problem: Not all Bazel files are recognized. Solution: Add *.bazel and *.BUILD. (closes vim/vim#6836) https://github.com/vim/vim/commit/4488f5a545691ca4c8802bad0d70a5e750fc8844
| * | | vim-patch:8.2.1565: spellfile test sometimes failsJan Edmund Lazo2020-09-02
| | | | | | | | | | | | | | | | | | | | | | | | Problem: Spellfile test sometimes fails. Solution: Check running into the end of the file. https://github.com/vim/vim/commit/e90d63ea904187ecbb09d0f7f21b71b302b30644
| * | | vim-patch:8.2.1561: using NULL pointers in fold codeJan Edmund Lazo2020-09-02
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Problem: Using NULL pointers in fold code. Solution: Avoid using a NULL pointer. (Dominique Pellé, closes vim/vim#6831, closes vim/vim#6831) https://github.com/vim/vim/commit/81fcb67fb32a12414512b72e691a1bbbff9f8511
| * | | vim-patch:8.2.1554: crash in normal testJan Edmund Lazo2020-09-02
|/ / / | | | | | | | | | | | | | | | Problem: Crash in normal test. Solution: Skip adjusting marks if there are no folds. https://github.com/vim/vim/commit/07e87e9eb5e7195d47d47c0ca752b6c8372a99ea
* | | Merge #12468 'lsp: logging'Justin M. Keyes2020-09-01
|\ \ \
| * | | lsp: add key name to the output log valueHirokazu Hata2020-08-26
| | | | | | | | | | | | | | | | Unless we look at the code every time, we will not know what the value is, so add the key name.
| * | | lsp: remove output log at rpc.notifyHirokazu Hata2020-08-26
| | | | | | | | | | | | | | | | Since "rpc.send.payload" outputs the log with almost the same contents, delete the output here.
* | | | lsp/make_position_param(): handle empty buffer #12825Gıyaseddin Tanrıkulu2020-09-01
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fix #12623 problem: nvim_buf_get_lines(0) returns empty during startup, where no buffers are loaded yet. solution: return empty object Happens during startup, where buffer may not be loaded yet, because... `source_startup_scripts()` is done before `edit_buffers()`: https://github.com/neovim/neovim/blob/9bb552875d205d2f869c66137563f93b77a6d08e/src/nvim/main.c#L362 https://github.com/neovim/neovim/blob/9bb552875d205d2f869c66137563f93b77a6d08e/src/nvim/main.c#L480
* | | | eval_call_provider(): free unused return value #12819Jacques Germishuys2020-09-01
| | | | | | | | | | | | Caller can pass discard=true to free the unwanted return value.
* | | | Merge pull request #12814 from theHamsta/escape-queriesThomas Vigouroux2020-09-01
|\ \ \ \ | | | | | | | | | | treesitter: avoid escaping complete query strings
| * | | | treesitter: avoid escaping complete query stringsStephan Seitz2020-08-31
| | | | | | | | | | | | | | | | | | | | | | | | | Escape "\\" only for `vim-match?` not for `match?` Fixes #12595
* | | | | Merge pull request #12736 from vigoux/ts-iter-childrenBjörn Linse2020-09-01
|\ \ \ \ \ | | | | | | | | | | | | treesitter: allow to iterate over node children
| * | | | | treesitter: add node:field() to get field childrenThomas Vigouroux2020-09-01
| | | | | |
| * | | | | treesitter: allow to iterate over node childrenThomas Vigouroux2020-08-31
| | | | | |
* | | | | | g:clipboard: allow command given as a list #12775DDoSolitary2020-09-01
| | | | | | | | | | | | | | | | | | fixes #12768
* | | | | | build/FindLua.cmake: allow Lua 5.4 #12820Michel Alexandre Salim2020-08-31
| |/ / / / |/| | | | | | | | | Lua 5.4 is out, and will be shipped with Fedora 33.
* | | | | Merge pull request #12804 from janlazo/vim-8.1.1725Jan Edmund Lazo2020-08-31
|\ \ \ \ \ | |/ / / / |/| | | | [RDY]vim-patch:8.1.{1694,1725,1776,1804,1806,1831,2041,2198,2206},8.2.{1033,1315,1548}
| * | | | vim-patch:8.2.1548: cannot move position of "%%" in message translationsJan Edmund Lazo2020-08-30
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Problem: Cannot move position of "%%" in message translations. (Emir Sarı) Solution: Improve the check script. https://github.com/vim/vim/commit/0b8cf278eca45241033033f9bf389e54669a8654
| * | | | vim-patch:8.1.1694: the RUN_VIM variable is longer than neededJan Edmund Lazo2020-08-30
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Problem: The RUN_VIM variable is longer than needed. Solution: Shorten RUN_VIM. (Daniel Hahler, closes vim/vim#4643) https://github.com/vim/vim/commit/41a82604453080d0011f281532582d3bd360df4a
| * | | | vim-patch:8.1.2041: no test for diff mode with syntax highlightingJan Edmund Lazo2020-08-30
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Problem: No test for diff mode with syntax highlighting. Solution: Add a test case. https://github.com/vim/vim/commit/248fdb33320641804afed4bdf5dc5cddb1cf64f5
| * | | | vim-patch:8.1.1831: confusing skipped messageJan Edmund Lazo2020-08-30
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Problem: Confusing skipped message. Solution: Drop "run" from "run start the GUI". https://github.com/vim/vim/commit/2514315fc2530170ad7681e45e2b6d1f0680c9eb Cherry-pick 'CheckCanRunGui' user command from patch 8.1.1826.
| * | | | vim-patch:8.1.2206: no test for fixed issue vim/vim#3893Jan Edmund Lazo2020-08-30
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Problem: No test for fixed issue vim/vim#3893. Solution: Add a test. (Christian Brabandt, vim/vim#3893) https://github.com/vim/vim/commit/28686682e77c0cca963201ae671bd773d86dba31
| * | | | vim-patch:8.1.1806: test for display updating doesn't check without statuslineJan Edmund Lazo2020-08-30
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Problem: Test for display updating doesn't check without statusline. Solution: Add screenshots without a status line. https://github.com/vim/vim/commit/7cc535175a233c6f02cdb5a364b3590560f5bfcb