| Commit message (Collapse) | Author | Age |
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|\
| |
| | |
Travis: Use caching instead of pre-compiled deps for OSX.
|
| |
| |
| |
| |
| | |
Using GCC 4.9 for building the dependencies caused some linker error on
OS X.
|
| |
| |
| |
| |
| | |
Running tests from the top-level Makefile will use the third-party
dependencies from .deps instead of the ones from the Travis cache.
|
|/ |
|
| |
|
| |
|
|
|
|
| |
Closes #4951
|
|\ |
|
| | |
|
| |
| |
| |
| | |
The patch was merged into master at f104ce2d.
|
| |
| |
| |
| |
| | |
The original test did also create additional auxiliary files which where never
used. They are not created any longer.
|
| |
| |
| |
| |
| | |
syntax.c: Added syn_get_concealed_id()
tests: Added tests for mouse clicks on concealed text.
|
| |
| |
| | |
If not set `XDG_DATA_HOME` is defaulted to `~/.local/share`; the data are stored under the `$XDG_DATA_HOME/nvim`.
|
| |
| |
| |
| | |
Closes #5114.
|
| |
| |
| |
| |
| |
| | |
Problem: test_writefile and test_viml do not delete the tempfile.
Solution: Delete the tempfile. (Charles Cooper) Add DeleteTheScript().
https://github.com/vim/vim/commit/f4f79b84a5595c511f6fdbe4e3e1d188d97879a0
|
|\ \
| | |
| | | |
vim-patch:7.4.1663,7.4.1682,7.4.1703
|
| | | |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Problem: Can't assert for not equal and not matching.
Solution: Add assert_notmatch() and assert_notequal().
https://github.com/vim/vim/commit/b50e5f56861deb867478997397f7c784a7043233
|
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Problem: Coverity: no check for NULL.
Solution: Add check for invalid argument to assert_match().
https://github.com/vim/vim/commit/72188e9aae26e6191c68ff673ef145104b17c64f
|
|/ /
| |
| |
| |
| |
| |
| | |
Problem: In tests it's often useful to check if a pattern matches.
Solution: Add assert_match().
https://github.com/vim/vim/commit/ea6553bec340920d8a09c7210cdc2d218e25ace2
|
| |
| |
| |
| |
| |
| |
| | |
Problem: Visual-block shift breaks multi-byte characters.
Solution: Compute column differently. (Yasuhiro Matsumoto) Add a test.
https://github.com/vim/vim/commit/20b4f463f4ab50fa9bcc9838aa94101fa5698125
|
| |
| |
| |
| |
| |
| | |
Problem: Cannot execute a single test function.
Solution: Add an argument to filter the functions with. (Yasuhiro Matsumoto)
https://github.com/vim/vim/commit/befb366affa6309c6b4a469ec7f729821e3a36fa
|
| | |
|
|\ \ |
|
| | |
| | |
| | |
| | | |
These tests should be here, not in the Makefile.
|
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Problem: Two tests fail.
Solution: Adjust the expected error number. Remove check for type.
https://github.com/vim/vim/commit/5a2800fd141a8fc0c80cdf421dcb76001a22327f
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Problem: Sticky type checking is more annoying than useful.
Solution: Remove the error for changing a variable type.
https://github.com/vim/vim/commit/f6f32c38bf3319144a84a01a154c8c91939e7acf
Note: There are a bunch of other changes to eval.txt that I believe are
N/A and not related to this patch.
|
| | |
| | |
| | |
| | | |
Closes #3364
|
| | |
| | |
| | |
| | |
| | |
| | | |
Problem: Error messages for security context are hard to translate.
Solution: Use one string with %s. (Ken Takata)
https://github.com/vim/vim/commit/4a1314cb9c1847dc32ceeb3eebeae123ef10b16e
|
|\ \ \
| | | |
| | | | |
genvimvim.lua: fix matching functions
|
| | | | |
|
| | | | |
|
| | | |
| | | |
| | | |
| | | | |
Fixes https://github.com/neovim/neovim/issues/5060.
|
|\ \ \ \
| | | | |
| | | | | |
Travis: Fix coveralls upload.
|
| | | | |
| | | | |
| | | | |
| | | | | |
Running coveralls with llvm-cov doesn't seem to work.
|
| | | | | |
|
|\ \ \ \ \ |
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Compiling with macro -DEXITFREE opens a code path on which the event
loop is used after it was teared down, because not all close events
were processed yet.
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
nvim blocking can be tested with "nvim +te +'!xclip' +qa"
By closing all handles for a pty process, we unblock the event loop if
the process has not terminated yet.
|
| | | | | | |
|
|\ \ \ \ \ \
| |_|_|/ / /
|/| | | | | |
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Reference: https://github.com/neovim/neovim/issues/3772#issuecomment-162334005
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
Pass busted the path to the detected Lua interpreter
|