| Commit message (Collapse) | Author | Age |
|\
| |
| | |
[RFC] vim-patch:8.0.0160
|
| | |
|
|/
|
|
|
|
|
| |
Problem: EMSG() is sometimes used for internal errors.
Solution: Change them to IEMSG(). (Dominique Pelle) And a few more.
https://github.com/vim/vim/commit/de33011ec623fd562419dede6bf465b5b9881a20
|
|\
| |
| | |
[RFC] Simplify Travis builds
|
| | |
|
| |
| |
| |
| |
| |
| |
| | |
Separating the non-flaky builds (asan, normal builds, lint) into
separate stages simply slowed down overall CI turnaround. Since none of
the builds rely on the output of others, reducing the stages increases
the opportunities for parallel builds.
|
| |
| |
| |
| |
| | |
Use unversioned gcc/gcov commands rather than pulling in a separate
repo.
|
|/
|
|
|
|
|
|
| |
The llvm repos commonly have access issues, so removing them will
improve stability of the Travis builds.
Filtering check_log's output through asan_symbolize also avoids the
version dance every time a new clang version makes its way into Travis.
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
TERM=konsole-256color is recognized by ncurses.
TERM=konsole-xterm might be more clever, but should not be necessary
(for Nvim at least), we already special-case Konsole in various places.
We may need to clean up some areas that currently assume Konsole always
"pretends xterm" (`TERM=xterm-256color`), though I didn't find any such
cases.
ref #6403
ref https://github.com/neovim/neovim/issues/6403#issuecomment-348713346
|
|\ |
|
| |
| |
| |
| |
| |
| |
| |
| | |
Problem: Flags of :substitute not sufficiently tested.
Solution: Test up to two letter flag combinations. (James McCoy, closes
vim/vim#1479)
https://github.com/vim/vim/commit/8c50d50b6e19b755d7bad7b2724d14ead29364a7
|
|/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
vim-patch:8.0.0334
vim-patch:8.0.0335
vim-patch:8.0.0343
vim-patch:8.0.0345
Problem: Can't access b:changedtick from a dict reference.
Solution: Make changedtick a member of the b: dict. (inspired by neovim
vim/vim#6112)
https://github.com/vim/vim/commit/79518e2ace5fce7b9c49060e462a6e935dba0a84
vim-patch:8.0.0343: b:changedtick can be unlocked
Problem: b:changedtick can be unlocked, even though it has no effect.
(Nikolai Pavlov)
Solution: Add a check and error E940. (closes #1496)
vim-patch:8.0.0345: islocked('d.changedtick') does not work
Problem: islocked('d.changedtick') does not work.
Solution: Make it work.
vim-patch:8.0.0335: functions test fails
Problem: Functions test fails.
Solution: Use the right buffer number.
https://github.com/vim/vim/commit/507647da3151f7ffccac1b217936240daa79849c
|
|
|
|
|
|
|
|
| |
Problem: Illegal memory access with vi'
Solution: For quoted text objects bail out if the Visual area spans more
than one line.
https://github.com/vim/vim/commit/46522af72424c7fadfa7a4cbba3dd21b82d19131
|
|\
| |
| | |
[RFC] vim-patch:8.0.0591,8.0.0634,8.0.0641,8.0.0657
|
| |
| |
| |
| | |
[ci skip]
|
| |
| |
| |
| |
| |
| |
| |
| | |
Problem: Cannot get and set quickfix list items.
Solution: Add the "items" argument to getqflist() and setqflist(). (Yegappan
Lakshmanan)
https://github.com/vim/vim/commit/6a8958db259d4444da6e6956e54a6513c1af8860
|
| |
| |
| |
| |
| |
| |
| |
| | |
Problem: Cannot set a separate highlighting for the current line in the
quickfix window.
Solution: Add QuickFixLine. (anishsane, closes vim/vim#1755)
https://github.com/vim/vim/commit/2102035488e80ef6fd5038ed15d21672712ba0f6
|
| |
| |
| |
| |
| |
| |
| |
| | |
Problem: Cannot easily get to the last quickfix list.
Solution: Add "$" as a value for the "nr" argument of getqflist() and
setqflist(). (Yegappan Lakshmanan)
https://github.com/vim/vim/commit/875feea6ce223462d55543735143d747dcaf4287
|
|/
|
|
|
|
|
| |
Problem: Changes to eval functionality not documented.
Solution: Include all the changes.
https://github.com/vim/vim/commit/45d2cca1ea3f90fc70ad99d0c6812a9d8536303c
|
|\
| |
| | |
Remove some tv_list_item_…() functions
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| |
| |
| |
| |
| | |
There is nothing wrong with them, just it is generally better to remove
a range then to remove items individually.
|
| |
| |
| |
| |
| | |
Reason: test may contain cleanup at the endwhich is needed for GC to work
properly, but is not done if test fails. With collectgarbage() in former
position it would crash when collecting garbage.
|
| | |
|
| |
| |
| | |
tv_list_remove_items() may cause confusion with tv_list_item_remove()
|
| | |
|
| | |
|
| |
| |
| |
| | |
Better write this bit in lua then make reviewers or clint filter out
tv_list_item_alloc().
|
| |
| |
| |
| | |
Still left calls in eval/typval.c and test/unit/eval/helpers.lua. Latter is the
only reason why function did not receive `static` modifier.
|
| |
| |
| |
| |
| | |
Followup to https://github.com/neovim/neovim/pull/7217.
Build failure: https://travis-ci.org/neovim/neovim/jobs/322930672#L2958.
|
|\ \
| | |
| | | |
[RFC] vim-patch:8.0.0608
|
| | | |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Problem: Cannot manipulate other than the current quickfix list.
Solution: Pass the list index to quickfix functions. (Yegappan Lakshmanan)
https://github.com/vim/vim/commit/a3921f48c6b31a035c80fda49925dd3b42df0dec
|
| | |
| | |
| | |
| | | |
The `set -e` caused the script to stop in case `patch` fails, but it is
better to continue giving instructions.
|
|\ \ \
| |/ /
|/| | |
|
| | | |
|
| | | |
|
| | |
| | |
| | |
| | | |
Fixes https://github.com/neovim/neovim/issues/7781
|
| | |
| | |
| | | |
Closes #7772
|
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Check that the full path to the python interpreter starts with
$VIRTUAL_ENV.
closes #7770
|
|/ /
| |
| |
| | |
- Latest commit from LuaJIT 2.0.5
|
|\ \ |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Problem: ":help :[range]" does not work. (Tony Mechelynck)
Solution: Translate to insert a backslash.
https://github.com/vim/vim/commit/a76f59d817e2da31d83b4f0e978b52abe81e0ae9
|
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Problem: getcmdtype(), getcmdpos() and getcmdline() are not tested.
Solution: Add tests. (Yegappan Lakshmanan)
https://github.com/vim/vim/commit/65189a1294307abf007faab7385dc0145ba72b06
|
|\ \ \
| | | |
| | | | |
health.vim: remove :CheckHealth command
|
| | | | |
|