| Commit message (Collapse) | Author | Age |
|
|
|
| |
one very important thought
|
|\ |
|
| |
| |
| |
| |
| |
| | |
Problem: A few remaining errors from ubsan.
Solution: Avoid the warnings. (Dominique Pellé, closes vim/vim#6837)
https://github.com/vim/vim/commit/4ad739fc053c1666d07ba1cf59be26cb1c3e52d7
|
| |
| |
| |
| |
| |
| | |
Problem: Not all Bazel files are recognized.
Solution: Add *.bazel and *.BUILD. (closes vim/vim#6836)
https://github.com/vim/vim/commit/4488f5a545691ca4c8802bad0d70a5e750fc8844
|
| |
| |
| |
| |
| |
| | |
Problem: Spellfile test sometimes fails.
Solution: Check running into the end of the file.
https://github.com/vim/vim/commit/e90d63ea904187ecbb09d0f7f21b71b302b30644
|
| |
| |
| |
| |
| |
| |
| | |
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
|
|/
|
|
|
|
| |
Problem: Crash in normal test.
Solution: Skip adjusting marks if there are no folds.
https://github.com/vim/vim/commit/07e87e9eb5e7195d47d47c0ca752b6c8372a99ea
|
|\ |
|
| |
| |
| |
| | |
Unless we look at the code every time, we will not know what the value is, so add the key name.
|
| |
| |
| |
| | |
Since "rpc.send.payload" outputs the log with almost the same contents, delete the output here.
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
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
|
| |
| |
| | |
Caller can pass discard=true to free the unwanted return value.
|
|\ \
| | |
| | | |
treesitter: avoid escaping complete query strings
|
| | |
| | |
| | |
| | |
| | | |
Escape "\\" only for `vim-match?` not for `match?`
Fixes #12595
|
|\ \ \
| | | |
| | | | |
treesitter: allow to iterate over node children
|
| | | | |
|
| | | | |
|
| | | |
| | | |
| | | | |
fixes #12768
|
| |/ /
|/| |
| | | |
Lua 5.4 is out, and will be shipped with Fedora 33.
|
|\ \ \
| |/ /
|/| | |
[RDY]vim-patch:8.1.{1694,1725,1776,1804,1806,1831,2041,2198,2206},8.2.{1033,1315,1548}
|
| | |
| | |
| | |
| | |
| | |
| | | |
Problem: Cannot move position of "%%" in message translations. (Emir Sarı)
Solution: Improve the check script.
https://github.com/vim/vim/commit/0b8cf278eca45241033033f9bf389e54669a8654
|
| | |
| | |
| | |
| | |
| | |
| | | |
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
|
| | |
| | |
| | |
| | |
| | |
| | | |
Problem: No test for diff mode with syntax highlighting.
Solution: Add a test case.
https://github.com/vim/vim/commit/248fdb33320641804afed4bdf5dc5cddb1cf64f5
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
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.
|
| | |
| | |
| | |
| | |
| | |
| | | |
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
|
| | |
| | |
| | |
| | |
| | |
| | | |
Problem: Test for display updating doesn't check without statusline.
Solution: Add screenshots without a status line.
https://github.com/vim/vim/commit/7cc535175a233c6f02cdb5a364b3590560f5bfcb
|
| | |
| | |
| | |
| | |
| | |
| | | |
Problem: No test for display updating without a scroll region.
Solution: Add a test.
https://github.com/vim/vim/commit/3c8ee629745737aa231fdd123826ae021e398e49
|
| | |
| | |
| | |
| | |
| | |
| | | |
Problem: Text added with a job to another buffer isn't displayed.
Solution: Update topline after adding a line. (closes vim/vim#4745)
https://github.com/vim/vim/commit/4641a122f2ffb820ec6d05526532ab38930c5286
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Problem: Crash when using :center in autocommand.
Solution: Bail out early for an empty line. (Dominique pelle, closes vim/vim#5095)
https://github.com/vim/vim/commit/396b7c78c0fd9cd07528963b18c27398491df40d
Cherry-pick 'src/testdir/check.vim' changes from patch 8.1.1544.
|
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Problem: MS-Windows: test log contains escape sequences.
Solution: Do not use t_md and t_me but ANSI escape sequences. (Ken Takata,
closes vim/vim#6559)
https://github.com/vim/vim/commit/45df2a01a79d562b59949383f79625bb8bd89a69
|
| | |
| | |
| | |
| | |
| | |
| | | |
Problem: Not easy to read the test time in the test output.
Solution: Align the times. Make slow tests bold.
https://github.com/vim/vim/commit/8d9437968b6693ecb14e7375bcb242e657e75266
|
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Problem: MS-Windows: E325 message may use incorrect date format.
Solution: Convert strftime() result to 'encoding'. Also make the message
translatable. (Ken Takata, closes vim/vim#4685, closes vim/vim#4681)
https://github.com/vim/vim/commit/663bbc09babea1ff8dfa7ccd58801ac9219fc2b2
|
| | |
| | |
| | |
| | |
| | | |
This caused segfaults when calling win_findbuf in an `on_detach`
callback, when the callback was triggered when closing the last window
containing the buffer.
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
- remove redundant autocmd list
This "grouped" list is useless, it only gets in the way when searching
for event names.
- intro.txt: cleanup
- starting.txt: update, revisit
- doc: `:help bisect`
- mbyte.txt: update aliases 1656367b90bd. closes #11960
- options: remove 'guifontset'. Why:
- It is complicated and is used by almost no one.
- It is unlikely to be implemented by Nvim GUIs (complicated to parse,
specific to Xorg...).
|
|/ /
| |
| |
| |
| |
| | |
The spec indicates we have to fallback to comparing by label
if sortText is falsy.
Closes #12431
|
|\ \ |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Snapcraft 4.0 complains about running LXD builds under sudo. So instead
add the CI user to the "lxd" group and use sg to switch to that
membership.
Resolves: #12712
|
| | | |
|
| | | |
|
| | | |
|
|/ / |
|
| | |
|
|\ \ |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
This reverts commit f3ffe0b325170dd214b80e371bee5a56b7054940.
Sending a control sequence to the host terminal, wrapped in DCS, causes
problems because it changes the state of the host terminal outside the
screen's control. This change will therefore be reverted.
|
| | |
| | |
| | |
| | | |
This reverts commit 9d0222ee3e232be859c3c70e6681f7156b5ac9d5.
|
|\ \ \
| |/ /
|/| | |
third-party: upgrade libvterm to v0.1.4
|
|/ / |
|
|\ \
| |/
|/| |
|
| | |
|
| | |
|