aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* runtime/zsh: b17893aa940dc7d45421f875f5d90855880aad27Saad Parwaiz2021-01-30
| | | | port zsh syntax file only
* runtime/zsh: 96f45c0b6fc9e9d404e6805593ed1e0e6795e470Saad Parwaiz2021-01-30
| | | | Port zsh syntax file only
* Merge pull request #13852 from janlazo/vim-8.2.2037Matthieu Coudron2021-01-30
|\ | | | | vim-patch:8.2.{2037,2038}
| * test/old: rewrite method code in test_compiler.vimJan Edmund Lazo2021-01-30
| | | | | | | | | | Patch v8.1.1803 and related method patches are not ported yet. Revert this commit when those patches are ported.
| * vim-patch:8.2.2038: compiler test fails on MS-WindowsJan Edmund Lazo2021-01-30
| | | | | | | | | | | | Problem: Compiler test fails on MS-Windows. Solution: Sort the found compiler plugin names. https://github.com/vim/vim/commit/142f23544c7045b22e56fa6ee35808aceb6342f2
| * vim-patch:8.2.2037: compiler test depends on list of compiler pluginsJan Edmund Lazo2021-01-30
|/ | | | | | Problem: Compiler test depends on list of compiler plugins. Solution: Compare with the actual list of compiler plugins. https://github.com/vim/vim/commit/60bc8e7244080b7ead009cfabebc3401f272ddbe
* Merge pull request #13833 from janlazo/vim-8.2.2412Jan Edmund Lazo2021-01-29
|\ | | | | vim-patch:8.2.{2412,2418,2420,2425}
| * vim-patch:8.2.2425: cursor on invalid line with range and :substituteJan Edmund Lazo2021-01-29
| | | | | | | | | | | | | | | | Problem: Cursor on invalid line with range and :substitute. Solution: Do not move the cursor when skipping commands. (closes vim/vim#3434) https://github.com/vim/vim/commit/df2c2988bbaecd28b0fbec8d64327b1bbb005e19 Cherry-pick Test_for_invalid() from patch v8.1.0736.
| * vim-patch:8.2.2420: too many problems with using all autocommand eventsJan Edmund Lazo2021-01-28
| | | | | | | | | | | | | | | | | | Problem: Too many problems with using all autocommand events. Solution: Disallow defining an autocommand for all events. https://github.com/vim/vim/commit/9a046fd08bcae319d39a4dbde2be81decee19013 Delete Test_wipe_cbuffer(). Commit dc5f4a3cc2f7f02e1ff4ec2f67eda4fb73e7d89c should have removed it.
| * vim-patch:8.2.2418: color not changed if ModeMsg highlight is set in InsertEnterJan Edmund Lazo2021-01-28
| | | | | | | | | | | | | | | | Problem: Color not changed if ModeMsg highlight is set in InsertEnter autocmd event. (Paul Swanson) Solution: Call highlight_changed() after triggering InsertEnter. (closes vim/vim#7751) https://github.com/vim/vim/commit/2e6cdb91e8dea08301f31bc83188c06112eb7f57
| * vim-patch:8.2.2412: not all fields in "cstack" are initializedJan Edmund Lazo2021-01-28
|/ | | | | | | Problem: Not all fields in "cstack" are initialized which might cause a crash. Solution: Use CLEAR_FIELD(). https://github.com/vim/vim/commit/ce0370d9e67df80c62ff033aa8ca2dbe86841de9
* Merge pull request #13784 from runiq/get_extmark_by_id-limit_breakThomas Vigouroux2021-01-28
|\ | | | | doc: remove nvim_buf_get_extmark_by_id limit opt
| * doc: remove nvim_buf_get_extmark_by_id limit optPatrice Peterson2021-01-18
| | | | | | | | Passing any key but `details` in the opts results in an error.
* | Merge pull request #13836 from teto/contribute-docThomas Vigouroux2021-01-28
|\ \ | | | | | | doc: link wiki on how to improve/build doc
| * | doc: link wiki on how to improve/build docMatthieu Coudron2021-01-27
| | | | | | | | | | | | We generate some part of the doc from lua which complexifies the process a bit so we've added a wiki page explaining this.
* | | lsp/tests: Ensure client is stopped in basic_init tests (#13798)Mathias Fußenegger2021-01-27
|/ /
* | Merge pull request #13719 from chentau/lua_complBjörn Linse2021-01-27
|\ \ | | | | | | Add completion to lua
| * | lintchentau2021-01-26
| | |
| * | lua: complete methods in metatablesBjörn Linse2021-01-26
| | |
| * | Don't show entire context when completingTony Chen2021-01-26
| | |
| * | feat: add completion to ':lua'TJ DeVries2021-01-26
|/ /
* | Merge pull request #13828 from vigoux/ts-bump-c-runtimeThomas Vigouroux2021-01-26
|\ \ | | | | | | deps(treesitter): bump C parser and runtime
| * | deps(treesitter): bump C parser and runtimeThomas Vigouroux2021-01-26
|/ / | | | | | | | | It's been a while since we bumped the C parser version, and a few ABI versions have been realised since.
* | Merge pull request #13820 from janlazo/vim-8.2.2392Jan Edmund Lazo2021-01-25
|\ \ | | | | | | vim-patch:8.2.{2392,2399,2402}
| * | vim-patch:8.2.2402: some filetypes not detectedJan Edmund Lazo2021-01-24
| | | | | | | | | | | | | | | | | | Problem: Some filetypes not detected. Solution: Detect Ruby Signature and Puppet related files. (Doug Kearns) https://github.com/vim/vim/commit/8323cab31c3120a7f80cf3271a506a30ec04d99e
| * | vim-patch:8.2.2399: fold test fails in wide terminalJan Edmund Lazo2021-01-24
| | | | | | | | | | | | | | | | | | Problem: Fold test fails in wide terminal. Solution: Adjust the test. (Dominique Pelle, closes vim/vim#7731, closes vim/vim#7739) https://github.com/vim/vim/commit/7cf0c114d690c91ac88c92a1a6f1b1935cb6410f
| * | vim-patch:8.2.2392: fennel filetype not recognizedJan Edmund Lazo2021-01-24
| | | | | | | | | | | | | | | | | | Problem: Fennel filetype not recognized. Solution: Detect with pattern and hashbang. (Chinmay Dalal, closes vim/vim#7729) https://github.com/vim/vim/commit/402115f1c2b4d0704a822206f2e6e931e721c129
* | | lsp: match textDocument/didChange eol behavior (#13792)Michael Lingelbach2021-01-25
|/ / | | | | We should be consistent in sending the EOL character to servers(I think). Julia expects this to match on bufwrite, or it crashes when vim appends the newline during the write process.
* | Merge pull request #13807 from spywhere/min-size-auto-signMatthieu Coudron2021-01-23
|\ \ | | | | | | Auto sign column with minimum size support
| * | opt: add tests (#13783)Sirisak Lueangsaksri2021-01-20
| | |
| * | opt: address linting issues (#13783)Sirisak Lueangsaksri2021-01-20
| | |
| * | opt: update docs on signnumber (#13783)Sirisak Lueangsaksri2021-01-20
| | |
| * | opt: better handling number bounds (#13783)Sirisak Lueangsaksri2021-01-20
| | |
| * | opt: reduce hardcoded values (#13783)Sirisak Lueangsaksri2021-01-20
| | |
| * | opt: minimum sign size for auto (#13783)Sirisak Lueangsaksri2021-01-20
| | |
* | | Merge pull request #13819 from runiq/extmark_gravity_docsBjörn Linse2021-01-23
|\ \ \ | | | | | | | | Doc: Generate API docs for buf_set_extmark gravity
| * | | Doc: Generate API docs for buf_set_extmark gravityPatrice Peterson2021-01-23
|/ / / | | | | | | | | | Cf. #13679
* | | lsp: clear diagnostics on client shutdown (#13788)Michael Lingelbach2021-01-23
| | |
* | | Merge pull request #13818 from janlazo/vim-8.2.2379Jan Edmund Lazo2021-01-22
|\ \ \ | | | | | | | | vim-patch:8.2.{2375,2379,2384,2385}
| * | | vim-patch:8.2.2385: "gj" and "gk" do not work correctly when inside a foldJan Edmund Lazo2021-01-22
| | | | | | | | | | | | | | | | | | | | | | | | Problem: "gj" and "gk" do not work correctly when inside a fold. Solution: Move check for folding. (closes vim/vim#7724, closes vim/vim#4095) https://github.com/vim/vim/commit/e71996bd0865659bde5450f466bc3e53e83431b2
| * | | vim-patch:8.2.2375: test for RGB color skipped in the terminalJan Edmund Lazo2021-01-21
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Problem: Test for RGB color skipped in the terminal. Solution: Run the GUI if possible. https://github.com/vim/vim/commit/09fbedc8dc3adc0a7adf2093916911e633cfa626 Cherry-pick Test_highlight_RGB_color() from patch v8.2.1077 to port this patch.
| * | | vim-patch:8.2.2384: turtle filetype not recognizedJan Edmund Lazo2021-01-21
| | | | | | | | | | | | | | | | | | | | | | | | Problem: Turtle filetype not recognized. Solution: Add a rule to detect turtle files. (closes vim/vim#7722) https://github.com/vim/vim/commit/5e6a7aa2b26077775906eb8411952dc6259694de
| * | | vim-patch:8.2.2379: do spell suggestions twice if 'spellsuggest' contains numberJan Edmund Lazo2021-01-21
| | | | | | | | | | | | | | | | | | | | | | | | Problem: Finding spell suggestions twice if 'spellsuggest' contains number. Solution: Only do internal suggestions once. (closes vim/vim#7713) https://github.com/vim/vim/commit/77a849c4b3d73c228013a047913c90834a93b4f6
* | | | Merge pull request #13603 from matveyt/masterBjörn Linse2021-01-22
|\ \ \ \ | | | | | | | | | | Missing argument for package.loadlib()
| * | | | Missing argument for package.loadlib()matveyt2021-01-22
|/ / / / | | | | | | | | | | | | | | | | | | | | Allow for foo.bar.baz module name Make luaopen_module() name compatible with Lua 5.1
* | | | Merge pull request #13813 from notomo/fix-nvim-echo-clearBjörn Linse2021-01-22
|\ \ \ \ | | | | | | | | | | api(echo): should clear cmdline before echo
| * | | | api(echo): should clear cmdline before echonotomo2021-01-21
| | | | |
* | | | | Merge pull request #13679 from chentau/gravityBjörn Linse2021-01-22
|\ \ \ \ \ | |_|/ / / |/| | | | Extmarks api: allow for gravity
| * | | | change end_right_gravity error behaviorchentau2021-01-12
| | | | |
| * | | | forgot to update testschentau2021-01-05
| | | | |