aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
...
| * | | | | | | | | | functests: Add some more NULL testsZyX2017-12-10
| | | | | | | | | | |
| * | | | | | | | | | eval: Fix uniq() crash in legacy test 055ZyX2017-12-10
| | | | | | | | | | |
| * | | | | | | | | | eval/encode: Fix crash in json_encode test suiteZyX2017-12-10
| | | | | | | | | | |
| * | | | | | | | | | functests: Mark islocked("v:_null_list") behaviour correctZyX2017-12-10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | It is the same for other VAR_FIXED lists.
| * | | | | | | | | | quickfix: Fix :cexpr and :lexprZyX2017-12-10
| | | | | | | | | | |
| * | | | | | | | | | eval: Fix setmatches(), setqflist() and setloclist()ZyX2017-12-10
| | | | | | | | | | |
| * | | | | | | | | | eval,functests: Fix tests and complete() and setline() behaviourZyX2017-12-10
| | | | | | | | | | |
| * | | | | | | | | | *: Hide list implementation in other files as wellZyX2017-12-10
| | | | | | | | | | |
| * | | | | | | | | | eval: Fix writefile()ZyX2017-12-10
| | | | | | | | | | |
| * | | | | | | | | | eval: Fix inputlist()ZyX2017-12-10
| | | | | | | | | | |
| * | | | | | | | | | *: Start hiding list implementationZyX2017-12-10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Most of files, except for eval.c and eval/* were only processed by perl.
| * | | | | | | | | | eval/typval: Add macros useful for hiding list item implementationZyX2017-12-10
| | | | | | | | | | |
| * | | | | | | | | | eval/typval: Add functions useful for hiding list implementationZyX2017-12-10
| | | | | | | | | | |
* | | | | | | | | | | Merge #7646 from bfredl/chan_bufferedJustin M. Keyes2017-12-23
|\ \ \ \ \ \ \ \ \ \ \ | |_|_|_|/ / / / / / / |/| | | | | | | | | | Document and defer error message when buffered stream would overwrite channels dict key
| * | | | | | | | | | provider: delete vimL stderr collector, now that it exists builtinBjörn Linse2017-12-23
| | | | | | | | | | |
| * | | | | | | | | | channel: check for existance before trying to set keyBjörn Linse2017-12-23
|/ / / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This avoids an error message in async context, where it is not safe.
* | | | | | | | | | Merge pull request #7751 from jamessan/vim-8.0.0590James McCoy2017-12-19
|\ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | [RFC] vim-patch:8.0.0590,8.0.0595,8.0.0597,8.0.0606
| * | | | | | | | | | vim-patch:8.0.0606: cannot set the context for a specified quickfix listJames McCoy2017-12-19
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Problem: Cannot set the context for a specified quickfix list. Solution: Use the list index instead of the current list. (Yegappan Lakshmanan) https://github.com/vim/vim/commit/6e62da3e14d32f76f60d5cc8b267059923842f17
| * | | | | | | | | | vim-patch:8.0.0597: off-by-one error in size computationJames McCoy2017-12-19
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Problem: Off-by-one error in buffer size computation. Solution: Use ">=" instead of ">". (Lemonboy, closes vim/vim#1694) https://github.com/vim/vim/commit/253f9128779f315ea670f9b4a17446b7b4c74927
| * | | | | | | | | | vim-patch:8.0.0595: Coverity warning for not checking return valueJames McCoy2017-12-19
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Problem: Coverity warning for not checking return value of dict_add(). Solution: Check the return value for FAIL. https://github.com/vim/vim/commit/beb9cb19c660484488a71a25eda46ab0fa579278
| * | | | | | | | | | vim-patch:8.0.0590: cannot add a context to locationsJames McCoy2017-12-19
|/ / / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Problem: Cannot add a context to locations. Solution: Add the "context" entry in location entries. (Yegappan Lakshmanan, closes vim/vim#1012) https://github.com/vim/vim/commit/8f77c5a4ec756f3f866bd6b18feb6fca6f2a2e91
* | | | | | | | | | Merge pull request #7747 from jamessan/vim-8.0.0565James McCoy2017-12-18
|\ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | vim-patch:8.0.0565,8.0.0574,8.0.0579,8.0.0580
| * | | | | | | | | | vim-patch:8.0.0580: cannot set the valid flag with setqflist()James McCoy2017-12-18
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Problem: Cannot set the valid flag with setqflist(). Solution: Add the "valid" argument. (Yegappan Lakshmanan, closes vim/vim#1642) https://github.com/vim/vim/commit/f1d21c8cc83f40c815b6bf13cd2043152db533ee
| * | | | | | | | | | vim-patch:8.0.0579: duplicate test case for quickfixJames McCoy2017-12-18
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Problem: Duplicate test case for quickfix. Solution: Remove the function. (Yegappan Lakshmanan) https://github.com/vim/vim/commit/9b77016545d5ef1a1f4a90c9bb4b7a6693af8918
| * | | | | | | | | | vim-patch:8.0.0574: get only one quickfix list after :caddbufJames McCoy2017-12-18
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Problem: Get only one quickfix list after :caddbuf. Solution: Reset qf_multiline. (Yegappan Lakshmanan) https://github.com/vim/vim/commit/99895eac1cf71be43ece7e14b50e206e041fbe9f
| * | | | | | | | | | vim-patch:8.0.0565: using freed memory in :caddbufJames McCoy2017-12-18
|/ / / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Problem: Using freed memory in :caddbuf after clearing quickfix list. (Dominique Pelle) Solution: Set qf_last to NULL. https://github.com/vim/vim/commit/31bdd13c335533c749993b57dcd980a87373139e
* | | | | | | | | | Merge pull request #7744 from jamessan/vim-8.0.0517James McCoy2017-12-18
|\ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | [RFC] vim-patch:8.0.0517,8.0.0536,8.0.0584
| * | | | | | | | | | vim-patch:8.0.0584: memory leak when executing quickfix testsJames McCoy2017-12-18
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Problem: Memory leak when executing quickfix tests. Solution: Free the list reference. (Yegappan Lakshmanan) https://github.com/vim/vim/commit/d788f6fe89c77262c474de323f5dab6d1c814e27
| * | | | | | | | | | vim-patch:8.0.0536: quickfix window not updated when freeing quickfix stackJames McCoy2017-12-18
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Problem: Quickfix window not updated when freeing quickfix stack. Solution: Update the quickfix window. (Yegappan Lakshmanan) https://github.com/vim/vim/commit/69f40be64555d50f603c6f22722cf762aaa6bbc1
| * | | | | | | | | | vim-patch:8.0.0517: there is no way to remove quickfix listsJames McCoy2017-12-18
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Problem: There is no way to remove quickfix lists (for testing). Solution: Add the 'f' action to setqflist(). Add tests. (Yegappan Lakshmanan) https://github.com/vim/vim/commit/b6fa30ccc39cdb7f1d07b99fe2f4c6b61671dac2
* | | | | | | | | | | Updating to latest UNIBILIUM (#7745)Issam Maghni2017-12-18
|/ / / / / / / / / / | | | | | | | | | | | | | | | | | | | | Update to unibilium 1.2.1
* | | | | | | | | | Merge pull request #7740 from jamessan/vim-8.0.0404James McCoy2017-12-18
|\ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | [RFC] vim-patch:8.0.0404,8.0.0484
| * | | | | | | | | | vim-patch:8.0.0484: :lhelpgrep does not fail after a successful oneJames McCoy2017-12-17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Problem: Using :lhelpgrep with an argument that should fail does not produce an error if the previous :helpgrep worked. Solution: Use another way to detect that autocommands made the quickfix info invalid. (Yegappan Lakshmanan) https://github.com/vim/vim/commit/ee85df37634dfb0c40ae5de0b4f246aef460b392
| * | | | | | | | | | vim-patch:8.0.0404: not enough testing for quickfixJames McCoy2017-12-17
|/ / / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Problem: Not enough testing for quickfix. Solution: Add some more tests. (Yegappan Lakshmanan) https://github.com/vim/vim/commit/391b1dd040af204b150d43c5a1c97477ee450a28
* | | | | | | | | | Merge pull request #7736 from jamessan/vim-8.0.0420James McCoy2017-12-17
|\ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | [RFC] vim-patch:8.0.0420: text garbled when the system encoding differs from 'encoding'
| * | | | | | | | | | lintJames McCoy2017-12-17
| | | | | | | | | | |
| * | | | | | | | | | vim-patch:8.0.0420: text garbled when the system encoding differs from ↵James McCoy2017-12-17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 'encoding' Problem: When running :make the output may be in the system encoding, different from 'encoding'. Solution: Add the 'makeencoding' option. (Ken Takata) https://github.com/vim/vim/commit/2c7292dc5bbf155fe2192d417363b8c085759cad
* | | | | | | | | | | provider/nodejs: more robust version-check (#7738)Justin M. Keyes2017-12-18
| | | | | | | | | | |
* | | | | | | | | | | Merge #7739 'ASAN/LeakSanitizer: ignore loop_schedule_deferred()'Justin M. Keyes2017-12-18
|\ \ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | | ASAN/LeakSanitizer: ignore loop_schedule_deferred()Justin M. Keyes2017-12-17
|/ / / / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | clang ASAN/LeakSanitizer error (observed in #7706): ==21832==ERROR: LeakSanitizer: detected memory leaks Direct leak of 56 byte(s) in 1 object(s) allocated from: 0 0x511b26 in malloc (/home/travis/build/neovim/neovim/build/bin/nvim+0x511b26) 1 0x1009a84 in try_malloc /home/travis/build/neovim/neovim/src/nvim/memory.c:87:15 2 0x1009c44 in xmalloc /home/travis/build/neovim/neovim/src/nvim/memory.c:121:15 3 0xaa8c36 in loop_schedule_deferred /home/travis/build/neovim/neovim/src/nvim/event/loop.c:89:19 4 0x190856a in tui_main /home/travis/build/neovim/neovim/src/nvim/tui/tui.c:367:5 5 0x1963d61 in ui_thread_run /home/travis/build/neovim/neovim/src/nvim/ui_bridge.c:106:3 6 0x2b5d4190d183 in start_thread /build/eglibc-SvCtMH/eglibc-2.19/nptl/pthread_create.c:312 Possible explanation: During exit, `Loop.thread_events` may not get flushed, so `loop_deferred_event()` is never called. We could instead try to unwind `Loop.thread_events` during teardown, but it seems lower-risk to just tell ASAN to ignore it. Valgrind does not complain: $ while :; do { 2>valglog.txt valgrind ./build/bin/nvim -u NONE +q ; } ; if ! [ $? = 0 ] ; then break ; fi ; done
* | | | | | | | | | | Merge pull request #7732 from jamessan/patch-summaryJames McCoy2017-12-17
|\ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | vim-patch.sh: Include upstream summary in commit message
| * | | | | | | | | | | vim-patch.sh: Include upstream summary in commit messageJames McCoy2017-12-17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | [ci skip]
* | | | | | | | | | | | health.vim: mention g:ruby_host_prog #7737Alex Genco2017-12-17
| | | | | | | | | | | |
* | | | | | | | | | | | health.vim: Try `pyenv root` #7341quinoa422017-12-17
| |/ / / / / / / / / / |/| | | | | | | | | |
* | | | | | | | | | | Merge #7706 'ci: nodejs acceptance-test'Justin M. Keyes2017-12-17
|\ \ \ \ \ \ \ \ \ \ \ | |/ / / / / / / / / / |/| | | | | | | | | |
| * | | | | | | | | | provider/nodejs: check version in Detect()Justin M. Keyes2017-12-17
| | | | | | | | | | |
| * | | | | | | | | | health.vim: nodejs: skip if nodejs is too oldJustin M. Keyes2017-12-17
| | | | | | | | | | |
| * | | | | | | | | | test: remove inspect test; set NODE_PATH in nodejs_spec.luaJan Edmund Lazo2017-12-17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | provider#node#can_inspect will fail on some systems because it is common to have old node versions in OS (any Linux OS that has LTS releases) and CI (Travis, Appveyor). NODE_PATH can be trivially set with VimL. Build scripts don't have to set it for the nodejs tests to work. NODE_PATH is optional to begin with and is used only as a workaround for the neovim node.js host.
| * | | | | | | | | | ci: nodejs client acceptance-test #7706Jan Edmund Lazo2017-12-17
|/ / / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | ci: install nodejs 8 in Appveyor, Travis provider: check node version for debug support Resolve https://github.com/neovim/neovim/pull/7577#issuecomment-350590592 for Unix. provider: test if nodejs in ci supports --inspect-brk nodejs host for neovim requires nodejs 6+ to work properly. nodejs 6.12+ or 7.6+ is required for debug support via `node --inspect-brk`. provider: run cli.js of nodejs host directly npm shims are useless because the user cannot set node to debug mode via --inspect-brk. This is problematic on Windows which use batchfiles and shell scripts to compensate for not supporting shebang. The patch uses `npm root -g` to get the absolute path of the global npm modules. If that fails, then the user did not install neovim npm package globally. Use that absolute path to find `neovim/bin/cli.js`, which is what the npm shim actually runs with node. glob() is for a simple file check in case bin/ is removed because the npm shims are ignored now.
* | | / / / / / / / tui: rework deferred-termcodes ... againJustin M. Keyes2017-12-16
| |_|/ / / / / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Revert timer-based approach. - Instead, call loop_poll_events() with a timeout in an "active" loop, to infer that "TUI startup activity has mostly finished", but also to enforce a mininum time (100 ms) before emitting "enable focus reporting" termcode. (If TUI startup takes longer than that minimum time, it's probably a slow environment anyways.) - Tickle `main_loop` by sending a dummy event. Without this, the initial "focus-gained" response from the terminal may not get processed until the user hits a key. ref #7720 ref #7664 ref #7649 ref #7664 ref 27f9b1c7b029d8