aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* chore: revert unrelated changes in testDylan Armstrong2021-02-27
|
* test: use assert_alive helper rather than eqDylan Armstrong2021-02-27
|
* test: segfault test for empty buffer paste on termDylan Armstrong2021-02-26
|
* fix: segfault when pasting in term with empty bufferDylan Armstrong2021-02-26
|
* Merge pull request #14022 from crispgm/lsp-start-errorMichael Lingelbach2021-02-26
|\ | | | | lsp: prompt correct error when language server start fails
| * fix: show error when language server start fails and prevent future requestsDavid Zhang2021-02-26
|/
* Merge pull request #14014 from mfussenegger/textDocumentSyncMichael Lingelbach2021-02-25
|\ | | | | LSP: Resolve text_document_save capability according to spec
| * LSP: Resolve text_document_save capability according to specMathias Fussenegger2021-02-25
| | | | | | | | | | Fixes https://github.com/neovim/neovim/issues/13989 See https://github.com/microsoft/language-server-protocol/issues/288
* | Merge pull request #14004 from erw7/fix-ficJan Edmund Lazo2021-02-25
|\ \ | |/ |/| option: fix problem with fileignorecase not being set properly
| * path.c: fix path_fnamencmperw72021-02-25
| | | | | | | | | | Fix the problem that the last comparison of strings when p_fic is true was not ignore case.
| * eval: add fname_case to feature listerw72021-02-25
| |
| * option: fix problem with fileignorecase not being set properlyerw72021-02-25
| |
* | Merge pull request #14008 from mfussenegger/docs-updateMichael Lingelbach2021-02-24
|\ \ | | | | | | Update lsp and api docs with gen_vimdoc changes
| * | Update lsp and api docs with gen_vimdoc changesMathias Fussenegger2021-02-24
|/ / | | | | | | | | Applies the changes generated with ./scripts/gen_vimdoc.py to add missing documentation.
* | [LSP] Add in more docs for highlight groups with document_highlight() (#13614)Chris Kipp2021-02-24
| | | | | | | | | | | | Currently it's not 100% clear that without setting these, using the autocomds to utilize the `textDocument/documentHighlight` functionality, nothing will actually be visible since the highlight groups don't have any details. This just adds in a couple simple extra notes to make sure that's done
* | Merge pull request #14001 from janlazo/vim-8.2.2545Jan Edmund Lazo2021-02-24
|\ \ | |/ |/| vim-patch:8.2.{2545,2547,2548}
| * pos: define MAXCOL to INT_MAXJan Edmund Lazo2021-02-23
| | | | | | | | | | Partial port of patch v8.1.0953. Remove useless casts on MAXCOL.
| * vim-patch:8.2.2548: May get stuck in the cmdline window using :normalJan Edmund Lazo2021-02-23
| | | | | | | | | | | | Problem: May get stuck in the cmdline window using :normal. Solution: Have nv_esc() return K_IGNORE. https://github.com/vim/vim/commit/7d41410a455ba62128655beb91c35d3fba299287
| * vim-patch:8.2.2547: "%" command not accurate for big filesJan Edmund Lazo2021-02-23
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Problem: "%" command not accurate for big files. Solution: Make it more accurate for files up to 21M lines. (Dominique Pellé, closes vim/vim#7889) https://github.com/vim/vim/commit/2c6553498e790604f50016d8435403523a2576d6 N/A patches for version.c: vim-patch:8.2.2545: errors and crash when terminal window is zero height Problem: Errors and crash when terminal window is zero height. (Leonid V. Fedorenchik) Solution: Do not resize when width or height is zero. (closes vim/vim#7890) https://github.com/vim/vim/commit/eba13e4ea28f133ff65f6b426428f49a9bd711b0
* | fix: treesitter languagetree crash when using telescope buffer previewer ↵Simon Hauser2021-02-23
|/ | | | (#13986)
* vim-patch:8.2.2233: cannot convert a byte index into a character index (#13978)kuuote2021-02-22
| | | | | Problem: Cannot convert a byte index into a character index. Solution: Add charidx(). (Yegappan Lakshmanan, closes vim/vim#7561) https://github.com/vim/vim/commit/17793ef23aae0bc94539390ccfe5e63b0ad39ff2
* lsp: remove deprecated references to 'callbacks' (#13945)Matthieu Coudron2021-02-23
| | | | | vim.lsp.callbacks was deprecated a few months ago. This is a cleanup before the release. Use vim.lsp.handlers instead.
* feat(lsp): use vim.notify for some errors (#13992)Matthieu Coudron2021-02-22
|
* Merge pull request #13988 from janlazo/vim-8.1.1310Jan Edmund Lazo2021-02-22
|\ | | | | vim-patch:8.1.1310: named function arguments are never optional
| * fixup! vim-patch:8.1.1310: named function arguments are never optionalJan Edmund Lazo2021-02-22
| |
| * vim-patch:8.1.1310: named function arguments are never optionalerw72021-02-22
| | | | | | | | | | | | | | Problem: Named function arguments are never optional. Solution: Support optional function arguments with a default value. (Andy Massimino, closes vim/vim#3952) https://github.com/vim/vim/commit/42ae78cfff171fbd7412306083fe200245d7a7a6
* | tui: fix possibility of evaluating uninitialized variables (#13987)erw72021-02-22
|/
* Merge pull request #13952 from bfredl/overlayBjörn Linse2021-02-22
|\ | | | | decorations: allow virt_text overlay at any column
| * decorations: allow virt_text overlay at any columnBjörn Linse2021-02-22
| |
* | vim-patch:8.2.2070: can't get the exit value in VimLeave(Pre) autocommands ↵Jan Edmund Lazo2021-02-20
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | (#13981) Problem: Can't get the exit value in VimLeave or VimLeavePre autocommands. Solution: Add v:exiting like in Neovim. (Yegappan Lakshmanan, closes vim/vim#7395) https://github.com/vim/vim/commit/f0068c5154a99b86b2c4515a4b93c003b2445cf4 Rearrange VimVarIndex enums and vimvars[] entries to sync with Vim. N/A patches for version.c: vim-patch:8.2.2535: MS-Windows: cannot run all vim9 tests Problem: MS-Windows: cannot run all vim9 tests. Solution: Make test_vim9 target work. https://github.com/vim/vim/commit/723ef5db980b2e69ef8bdc0dd448cb645491c464
* | lsp: Fix text edits operating on the last line of a document (#13677)Mathias Fußenegger2021-02-19
| | | | | | | | | | | | `lines` can be empty, in which case `#lines[#lines]` failed with an error: lsp/util.lua:214: attempt to get length of a nil value
* | lsp: client stop cleanups (#13877)Michael Lingelbach2021-02-19
| | | | | | | | | | | | | | | | * lsp: client stop cleanups * Add diagnostic clearing to client.stop() method used by nvim-lspconfig * Clear diagnostic cache to prevent stale diagnostics on client restart * lsp: Add test for vim.lsp.diagnostic.reset
* | [RFC] ":source" sources from current buffer if filename is omitted (#11444)Vikram Pal2021-02-18
| | | | | | Fix https://github.com/neovim/neovim/issues/8722
* | Merge pull request #13968 from janlazo/runtime-tarJan Edmund Lazo2021-02-18
|\ \ | | | | | | runtime/tar: port latest files
| * | runtime/tar: 23515b4ef7580af8b9d3b964a558ab2007cacda5Jan Edmund Lazo2021-02-17
| | | | | | | | | | | | | | | | | | Port tar files only in order to support '*.tar.zst' files. Close https://github.com/neovim/neovim/pull/13337
| * | runtime/tar: 8024f936368336241406137a2fa78ed5ee9000a6Jan Edmund Lazo2021-02-17
| | | | | | | | | | | | Port tar runtime files only.
| * | runtime/tar: 2963456ff2b740244b3a064785fe681b1998d75eJan Edmund Lazo2021-02-17
|/ / | | | | | | Port tar files for release v31 only.
* | vim-patch:8.2.2523: Svelte filetype not recognized (#13961)Brian Ryall2021-02-18
| | | | | | | | | | Problem: Svelte filetype not recognized. Solution: Add a detection rule. (Brian Ryall, closes vim/vim#7858) https://github.com/vim/vim/commit/c0fcb6e0b10050145e7d334b68b1bdc5201fed05
* | vim-patch:8.2.2522: Beancount filetype not recognized (#13960)Brian Ryall2021-02-18
| | | | | | | | | | Problem: Beancount filetype not recognized. Solution: Add a detection rule. (Brian Ryall, closes vim/vim#7859) https://github.com/vim/vim/commit/9bbd883b3528b37dcacad22ad58861105a9ae428
* | fix(flake): add debuginfo to nvim-debug (#13947)Matthieu Coudron2021-02-17
|/ | | | nvim-debug was missing symbols. adding the lock file to remove the flake warning message as well.
* Merge pull request #13944 from chentau/on_bytes_docBjörn Linse2021-02-17
|\ | | | | Doc: update documentation for on_bytes
| * Doc: update documentation for on_byteschentau2021-02-17
| |
* | netrw: move netrw_home to XDA_DATA_HOME (#13939)Jakub Łuczyński2021-02-16
| |
* | doc: Update vim_diff.txt (#13954)Yegappan Lakshmanan2021-02-16
| | | | | | | | | | | | | | | | Update vim_diff.txt to reflect the following patches: patch 8.1.1113: making an autocommand trigger once is not so easy patch 8.2.2128: there is no way to do something on CTRL-Z patch 8.2.2508: cannot change the character displayed in non existing lines patch 8.2.2518: 'listchars' should be window-local
* | Merge pull request #13692 from mjlbach/fix_cursor_respect_current_lineBjörn Linse2021-02-16
|\ \ | | | | | | fix_cursor: do not change line number when edit will not impact cursor row
| * | tests: add test for cursor postion when deleting buffer linesMichael Lingelbach2021-01-31
| | |
| * | fix_cursor: do not change line number when edit will not impact cursorMichael Lingelbach2021-01-31
| | | | | | | | | | | | row
* | | Merge pull request #13949 from janlazo/runtime-netrwJan Edmund Lazo2021-02-16
|\ \ \ | |_|/ |/| | runtime/netrw: port missing Vim 8.1,8.2 runtime patches
| * | runtime/netrw: 207f009326c8f878defde0e594d7d9ed9860106eJan Edmund Lazo2021-02-16
| | | | | | | | | | | | Port runtime/doc/pi_netrw.txt only.
| * | runtime/netrw: 8024f936368336241406137a2fa78ed5ee9000a6Jan Edmund Lazo2021-02-16
| | | | | | | | | | | | Port runtime/doc/pi_netrw.txt only.