aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* Merge pull request #17630 from kchibisov/fix-underline-regressionJames McCoy2022-03-06
|\ | | | | fix(api): highlight attribute for underline
| * fix(api): highlight attribute for underlineKirill Chibisov2022-03-06
| | | | | | | | | | | | | | This commit fixes regression introduced in c365de1 when checking for highlight attribute for underline was returning '0' when it was present Fixes #17624.
* | Merge pull request #17616 from zeertzjq/vim-8.2.3739zeertzjq2022-03-07
|\ \ | | | | | | vim-patch:8.2.{3739,3745,3920,4060,4513}
| * | test: add a test for #17609zeertzjq2022-03-07
| | |
| * | test(autochdir_spec): use better patternszeertzjq2022-03-07
| | |
| * | vim-patch:8.2.4513: window-local directory is not applied if 'acd' failszeertzjq2022-03-07
| | | | | | | | | | | | | | | | | | Problem: Window-local directory is not applied if 'acd' fails. Solution: Don't call do_autochdir(). (closes vim/vim#9891) https://github.com/vim/vim/commit/b29ae159777028bb3266835b55716749ab0515be
| * | vim-patch:8.2.4060: win_execute() slow on systems where getcwd()/chdir() is slowzeertzjq2022-03-07
| | | | | | | | | | | | | | | | | | | | | | | | Problem: win_execute() is slow on systems where getcwd() or chdir() is slow. (Rick Howe) Solution: Avoid using getcwd() and chdir() if no local directory is used and 'acd' is not set. (closes vim/vim#9504) https://github.com/vim/vim/commit/d6f27c66cca32b93fcf8024b1bad1618946bbbea
| * | vim-patch:8.2.3920: restoring directory after using another window is ↵zeertzjq2022-03-07
| | | | | | | | | | | | | | | | | | | | | | | | | | | inefficient Problem: Restoring directory after using another window is inefficient. Solution: Only restore the directory for win_execute(). Apply 'autochdir' only when needed. https://github.com/vim/vim/commit/90c317f2246a7fb4bd4e3feb0778b53627bc9fad
| * | vim-patch:8.2.3745: autochdir test fails without the +channel featurezeertzjq2022-03-07
| | | | | | | | | | | | | | | | | | Problem: Autochdir test fails without the +channel feature. Solution: Remove the ch_logfile() call. (Dominique Pellé, closes vim/vim#9281) https://github.com/vim/vim/commit/f661cee847d2c17652b0ad0d703d2e3ac8610265
| * | vim-patch:8.2.3739: in wrong directory when using win_execute() with 'acd' setzeertzjq2022-03-07
|/ / | | | | | | | | | | Problem: In wrong directory when using win_execute() with 'acd' set. Solution: Restore the directory when returning to the window. (closes vim/vim#9276) https://github.com/vim/vim/commit/dea4a616376c6500894c16e26057ce16d7ef9f0e
* | refactor(signcol): smarter invalidation (#17533)Lewis Russell2022-03-06
| | | | | | | | | | | | | | | | | | | | Previously b_signcols was invalidated whenever a sign was added/removed or when a buffer line was added/removed. This change introduces a sentinel linenr_T into the buffer state which is a line number used to determine the signcolumn. With this information, we can invalidate the signcolumn less often. Now the signcolumn is only invalidated when a sign or line at the sentinel line number is removed.
* | Merge pull request #17628 from jamessan/bsd-gdbJames McCoy2022-03-06
|\ \ | | | | | | ci(bsd): install gdb to get backtraces from cores
| * | test(sr.ht): skip luamod-dev test which crashes nvimJames McCoy2022-03-06
| | |
| * | ci(bsd): install gdb to get backtraces from coresJames McCoy2022-03-06
| |/
* / feat(api): add 'buffer' argument to nvim_get_autocmds (#17594)Gregory Anders2022-03-06
|/ | | | | This enables retrieving autocommands defined in the given buffers. Under the hood this simply translates the buffer numbers into '<buffer=%d>' patterns.
* fix(lsp): handle insertion of previous line (#17618)Michael Lingelbach2022-03-06
|
* Merge pull request #17623 from zeertzjq/lua-editor-mentionszeertzjq2022-03-06
|\ | | | | docs(lua): reference runtime/lua/vim/_editor.lua
| * docs(lua): reference runtime/lua/vim/_editor.luazeertzjq2022-03-06
| |
* | Merge pull request #16897 from lewis6991/signsbfredl2022-03-06
|\ \ | |/ |/| feat(decorations): support signs
| * feat(decorations): support signsLewis Russell2022-03-05
| | | | | | | | | | | | | | | | | | | | | | | | Add the following options to extmarks: - sign_text - sign_hl_group - number_hl_group - line_hl_group - cursorline_hl_group Note: ranges are unsupported and decorations are only applied to start_row
* | Merge pull request #17597 from dundargoc/build/cmake/fix-warningsJames McCoy2022-03-05
|\ \ | | | | | | fix cmake warnings
| * | build(cmake): remove unused variable CMAKE_CXX_COMPILER to fix warningDundar Göc2022-03-04
| | |
| * | build(cmake): fix policy warningDundar Göc2022-03-04
| |/
* | Merge pull request #17589 from kchibisov/add-dashed-dotted-underlineJames McCoy2022-03-05
|\ \ | | | | | | Add support for double, dashed, and dotted underlines
| * | fix: bounds check for underdotKirill Chibisov2022-03-05
| | |
| * | fix(syntax): remove trailing spaces in vim.vimKirill Chibisov2022-03-04
| | |
| * | fix(docs): spelling in new underlines docsKirill Chibisov2022-03-04
| | |
| * | feat(tui): add support for `CSI 4 : [2,4,5] m`Kirill Chibisov2022-03-03
| | | | | | | | | | | | | | | | | | | | | | | | This commit finishes support for colored and styled underlines adding `CSI 4 : [2,4,5] m` support providing double, dashed, and dotted underlines Fixes #17362.
* | | Merge pull request #17538 from dundargoc/refactor/bugprone-signed-char-misusebfredl2022-03-05
|\ \ \ | | | | | | | | refactor: fix clang-tidy bugprone-signed-char-misuse warnings
| * | | test(strcase_save): test overlong UTF8-encodingDundar Göc2022-03-05
| | | |
| * | | refactor: fix clang-tidy bugprone-signed-char-misuse warningsDundar Göc2022-03-04
| | |/ | |/| | | | | | | | | | Prefer to declare variables with correct type instead of explicit casts wherever possible.
* | | Merge pull request #17603 from bfredl/luaworldbfredl2022-03-05
|\ \ \ | | | | | | | | refactor(lua): move only runtime lua file in src/ to runtime/lua
| * | | refactor(lua): move only runtime lua file in src/ to runtime/luabfredl2022-03-04
| | | | | | | | | | | | | | | | reorganize so that initialization is done in lua
* | | | fix(lsp): start incremental sync range at previous newline character (#17610)Michael Lingelbach2022-03-05
| | | | | | | | | | | | This change forces the start of an incremental sync range to begin always on an existing line.
* | | | Merge pull request #17611 from zeertzjq/vim-patch-pr-argsJames McCoy2022-03-05
|\ \ \ \ | |_|/ / |/| | | feat(vim-patch.sh): support additional args for -s
| * | | feat(vim-patch.sh): support additional args for -szeertzjq2022-03-05
|/ / / | | | | | | | | | This allows creating a draft vim-patch PR.
* | | Merge pull request #17601 from dundargoc/revert/libuvJames McCoy2022-03-04
|\ \ \ | |/ / |/| |
| * | revert: "build(deps): bump libuv to 1.43.0+7ae0c95"Dundar Göc2022-03-04
|/ / | | | | | | This reverts commit 2da9450de57e6420480607ac2e83bc3cb1fa19e9.
* | Merge pull request #17598 from dundargoc/ci/reviewer/update-reviewersJames McCoy2022-03-04
|\ \ | | | | | | ci(reviews): update reviewers
| * | ci(reviews): update reviewersDundar Göc2022-03-04
|/ /
* | Merge pull request #17596 from zeertzjq/autocmd-commentzeertzjq2022-03-04
|\ \ | | | | | | chore(autocmd): move comment to the right place
| * | chore(autocmd): move comment to the right placezeertzjq2022-03-04
|/ /
* | fix(autocmd): clean up autocmds only when needed (#17593)Jaehwang Jung2022-03-04
| |
* | Merge pull request #17567 from bfredl/preloadbfredl2022-03-03
|\ \ | | | | | | refactor(lua): regularize builtin modules, phase 1
| * | refactor(lua): reorganize builtin modules, phase 1bfredl2022-03-03
| |/
* | Merge pull request #17568 from groves/respect_os_proc_children_rvJames McCoy2022-03-03
|\ \
| * | fix: respect os_proc_children rv of pid not foundCharlie Groves2022-03-01
| | | | | | | | | | | | | | | | | | | | | | | | os_proc_children returns 2 if there's a failure in the underlying syscall. Only shell out to pgrep in that case. It returns 1 if the pid isn't found. In that case, we can roll forward with returning an empty list.
* | | Merge pull request #17564 from dundargoc/ci/freebsd/remove-deprecated-portJames McCoy2022-03-03
|\ \ \ | | | | | | | | ci(freebsd): remove deprecated package sha to fix warning
| * | | ci(freebsd): remove deprecated package sha to fix warningDundar Göc2022-03-01
| | | | | | | | | | | | | | | | It's already included by default, no need to replace it.
* | | | Merge pull request #17591 from zeertzjq/vim-8.2.4498zeertzjq2022-03-03
|\ \ \ \ | | | | | | | | | | vim-patch:8.2.4498: using <Plug> with "noremap" does not work