aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* fix(lsp): handlers should focus quickfix listMichael Lingelbach2021-06-21
|
* vim-patch:8.2.3020: unreachable code (#14866)jimman20032021-06-20
| | | | | Problem: Unreachable code. Solution: Remove the code. (closes vim/vim#8406) https://github.com/vim/vim/commit/2fb749568662c86992aea3b596458b9e470f223d
* Merge pull request #14849 from seandewar/demethod-curwinJan Edmund Lazo2021-06-19
|\ | | | | fix(doc): various fixes
| * fix(doc/index.txt): various ex command fixesSean Dewar2021-06-19
| | | | | | | | | | | | | | | | Add :eval and :checkhealth (:eval was also missing upstream). Fix :perlfile typo, add abbreviations for :perl, :perlfile and :perldo. Remove :scriptversion; it hasn't been ported yet (#14611). [skip ci]
| * fix(doc): :sleep! does not hide cursorSean Dewar2021-06-19
| | | | | | | | :sleep is the same as :sleep! in the port of v8.2.2366
| * fix(doc): remove :promptfind and :promptreplSean Dewar2021-06-19
| | | | | | | | :promptfind and :promptrepl are N/A for Nvim.
| * fix(doc): don't use method call syntax in examplesSean Dewar2021-06-19
| | | | | | | | The method call syntax patches aren't ported yet.
* | Merge pull request #14851 from ckipp01/hlCodeLensMichael Lingelbach2021-06-19
|\ \
| * | Add hl group docs for codelensesckipp012021-06-20
| | |
* | | Merge pull request #14861 from stevearc/diagnostic-loclistMichael Lingelbach2021-06-19
|\ \ \ | |_|/ |/| | fix(lsp): fix severity_limit logic in set_loclist
| * | fix(lsp): fix severity_limit logic in set_loclistSteven Arcangeli2021-06-19
|/ /
* | Merge pull request #14833 from vigoux/tree-sitter-docs-tidyThomas Vigouroux2021-06-19
|\ \ | |/ |/| docs(treesitter): tidy docs and remove legacy information
| * docs(treesitter): mention query help pageThomas Vigouroux2021-06-16
| |
| * docs(treesitter): tidy docs and remove legacy informationThomas Vigouroux2021-06-16
| |
* | Merge pull request #14824 from vigoux/extmarks-ts-perfBjörn Linse2021-06-18
|\ \ | | | | | | perf(extmarks): allow ephemeral extmarks past EOF to remove O(strlen^2) cost of tree-sitter
| * | perf(extmarks): allow ephemeral extmarks past EOFThomas Vigouroux2021-06-16
| | |
* | | vim-patch:8.2.3012: when 'rightleft' is set the line number is drawn ↵Jan Edmund Lazo2021-06-17
| | | | | | | | | | | | | | | | | | | | | | | | | | | reversed (#14839) Problem: When 'rightleft' is set the line number is sometimes drawn reversed. Solution: Adjust how space is handled. (Christian Brabandt, closes vim/vim#8389, closes vim/vim#8391) https://github.com/vim/vim/commit/29f0dc3689eafcf7888e06d57d1cf79e62c5c148
* | | Merge pull request #14840 from folke/lsp_float_cleanupMichael Lingelbach2021-06-16
|\ \ \ | | | | | | | | chore(lsp): removed deprecated floating preview methods
| * | | chore(lsp): removed deprecated floating preview methodsFolke Lemaitre2021-06-17
|/ / /
* | / release.sh: use stdin for release commit message (#14832)Jan Edmund Lazo2021-06-16
| |/ |/| | | | | v0.5.0 has too many commits since v0.4.0. "git commit -m" triggers "Argument list too long" error.
* | Merge pull request #14796 from glacambre/upgrade_to_gcc11James McCoy2021-06-16
|\ \ | | | | | | [RDY] ci: upgrade to gcc-11 on ubuntu-18.04
| * | ci: upgrade to gcc-11 on ubuntu-18.04glacambre2021-06-16
|/ / | | | | | | | | | | | | | | | | | | In https://github.com/neovim/neovim/issues/14150 , investigations showed that using an older gcc to build the appimage could result in severe perf issues. This is because older gcc versions happily replace calls to libc functions with their own, which happen to be less optimized than their libc counterparts. We fix this problem by upgrading to gcc-11 on ubuntu-18.04.
* | fix(lsp): add bufnr to formatting requestsLukas Reineke2021-06-15
| | | | | | | | | | | | Add the buffer number to the `textDocument/formatting` request, so that it is passed to the handler. The built-in formatting handlers do not use the buffer number, but user overrides should have access to it.
* | docs(lsp): Clarify opts for show_line_diagnostics()Shadman2021-06-15
|/
* Merge pull request #14454 from eltociear/patch-1Thomas Vigouroux2021-06-15
|\ | | | | screen: fix typo in screen.c
| * screen: fix typo in screen.cIkko Ashimine2021-04-29
| | | | | | accomodate -> accommodate
* | Merge pull request #14822 from eltociear/patch-2Thomas Vigouroux2021-06-15
|\ \ | | | | | | option: fix typo in option.c
| * | option: fix typo in option.cIkko Ashimine2021-06-16
|/ / | | | | seperated -> separated
* | Merge pull request #14817 from neovim/marvim/api-doc-update/masterMichael Lingelbach2021-06-15
|\ \
| * | docs: regeneratemarvim2021-06-15
|/ /
* | docs(lsp): annotate call_hierarchy function as privatecbarrete2021-06-14
| |
* | fix(lsp): fix on_detach in lsp.diagnostic Jaehwang Jerry Jung2021-06-14
| | | | | | | | | | `lsp.diagnostic.get_all()` was returning diagnotics for `:bwipeout`-ed buffers because the diagnostic cache is not cleared. The first argument of on_detach callback is the string "detach", not the bufnr.
* | Merge pull request #14815 from folke/lsp_triplesMichael Lingelbach2021-06-14
|\ \ | | | | | | fix(lsp): replace --- by a line in stylize_markdown
| * | fix(lsp): replace --- by a line in stylize_markdownFolke Lemaitre2021-06-15
|/ /
* | Merge pull request #14482 from elianiva/lsp/remove_hover_lineMichael Lingelbach2021-06-14
|\ \ | | | | | | feat(lsp): hide triple - in hover window
| * | feat(lsp): hide triple - in hover window.elianiva2021-06-15
| | |
* | | Merge pull request #14737 from rktjmp/lsp-guard-against-negative-linesMichael Lingelbach2021-06-14
|\ \ \ | | | | | | | | [RDY] fix(lsp): guard against negative diagnostic line numbers
| * | | fix(lsp): guard against negative diagnostic line numbersOliver Marriott2021-06-13
| | | |
* | | | Merge pull request #14814 from nanotee/fix_lsp_floats_presetsMichael Lingelbach2021-06-14
|\ \ \ \ | |_|/ / |/| | | fix(lsp): allow 'rounded' and 'solid' in floats
| * | | fix(lsp): allow 'rounded' and 'solid' in floatsTimothée Sterle2021-06-14
|/ / /
* | | Merge pull request #13165 from mfussenegger/codelensMichael Lingelbach2021-06-14
|\ \ \ | | | | | | | | feat(lsp): Add codelens support
| * | | feat(lsp): Add codelens supportMathias Fussenegger2021-06-14
| | | |
* | | | Merge pull request #14813 from neovim/marvim/api-doc-update/masterThomas Vigouroux2021-06-14
|\ \ \ \ | | | | | | | | | | docs: regenerate
| * | | | docs: regeneratemarvim2021-06-14
|/ / / /
* | | | Merge pull request #14804 from clason/rounded-bordersMichael Lingelbach2021-06-14
|\ \ \ \ | |/ / / |/| | | [RDY] feat(float): add rounded borders preset
| * | | feat(float): add rounded borders presetChristian Clason2021-06-14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add `borders = "rounded"` preset for `nvim_open_win`, equivalent to border = {"╭", "─", "╮", "│", "╯", "─", "╰", "│"} Also add undocumented "solid" preset to docs.
* | | | Merge pull request #14802 from janlazo/vim-8.2.1354Jan Edmund Lazo2021-06-13
|\ \ \ \ | | | | | | | | | | vim-patch:8.2.{936,1354,2990}
| * | | | vim-patch:8.2.2990: Jupyter Notebook files are not recognizedJan Edmund Lazo2021-06-13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Problem: Jupyter Notebook files are not recognized. Solution: Recognize *.ipynb. (closes vim/vim#8375) https://github.com/vim/vim/commit/2e66b0d1373891f40e2561ccd2d3369de1614bcd
| * | | | vim-patch:8.2.0936: some terminals misinterpret the code for getting cursor ↵Jan Edmund Lazo2021-06-13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | style Problem: Some terminals misinterpret the code for getting cursor style. Solution: Send a sequence to the terminal and check the result. (IWAMOTO Kouichi, closes vim/vim#2126) Merged with current code. https://github.com/vim/vim/commit/a45551a53557dba98973fdb3ff737dea2fffcda3 Cherry-pick Test_cwindow_highlight() from patch v8.1.2040 because it is skipped.
| * | | | vim-patch:8.2.1354: test 59 is old styleJan Edmund Lazo2021-06-13
| |/ / / | | | | | | | | | | | | | | | | | | | | Problem: Test 59 is old style. Solution: Convert into a new style test. (Yegappan Lakshmanan, closes vim/vim#6604) https://github.com/vim/vim/commit/aa970abd0a987de96321d33db82f70bbceac931b