Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | fix(messages): use "Vimscript" instead of "VimL" #24111 | Justin M. Keyes | 2023-06-22 |
| | | | | followup to #24109 fix #16150 | ||
* | fix(api): notify dict watchers on nvim_set_var and vim.g setter | smolck | 2022-09-27 |
| | | | | | Co-authored-by: bfredl <bjorn.linse@gmail.com> Co-authored-by: Christian Clason <c.clason@uni-graz.at> | ||
* | refactor(tests): use assert_alive() #15546 | Justin M. Keyes | 2021-09-01 |
| | |||
* | more tests | Daniel Hahler | 2021-03-30 |
| | |||
* | test | Daniel Hahler | 2021-03-30 |
| | |||
* | Test and initial fix for crash with dictwatcherdel | Daniel Hahler | 2021-03-30 |
| | | | | Fixes https://github.com/neovim/neovim/issues/11188. | ||
* | dictwatcher: fix use-after-free #11495 | erw7 | 2019-12-02 |
| | | | | | fixes #11494 | ||
* | dictwatcheradd(): support b:changedtick #9693 | demiurg337 | 2019-03-14 |
| | | | | | fixes #6635 closes #9693 | ||
* | test: rename next_message() to next_msg() | Justin M. Keyes | 2018-03-11 |
| | |||
* | eval: Make sure that v:_null_dict does not crash dictwatcher*() | ZyX | 2017-03-29 |
| | | | Ref #4615 | ||
* | eval: Move remaining get_tv_string* functions to eval/typval.c | ZyX | 2017-03-29 |
| | |||
* | *: Move some dictionary functions to typval.h and use char* | ZyX | 2017-03-29 |
| | | | | Also fixes buffer reusage in setmatches() and complete(). | ||
* | Allow lambdas to be used with jobs, timers and dictwatchers. | Michael Ennen | 2017-02-14 |
| | |||
* | eval: Remove dictwatcher from watchers queue before freeing it | James McCoy | 2017-01-12 |
| | | | | | | | | | | | | | | This fixes a use-after-free noticed by ASAN which would occur when a dictwatcher was still active on a dictionary when the dictionary was freed. fun! MakeWatch() let d = {'foo': 'bar'} call dictwatcheradd(d, 'foo', function('...')) endfun Patch-by: oni-link Closes #5930 | ||
* | Add some tests and cleanup. | Michael Ennen | 2016-12-12 |
| | |||
* | Make partials work with jobs, timers, and dictwatchers. | Björn Linse | 2016-12-12 |
| | |||
* | test: system(): backgrounded shell command | Justin M. Keyes | 2016-10-19 |
These tests are essentially affirming a regression vs Vim. In Vim, :echo system('cat - &', 'foo') returns "foo", because Vim internally wraps the command with shell-specific syntax to redirect the streams from /dev/null[1]. That can't work in Nvim because we use pipes directly (instead of temp files) and don't wrap the command with shell-specific redirection syntax. References #3529 References #5241 [1] http://pubs.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#tag_18_09_03_02 |