diff options
| author | Michael Ennen <mike.ennen@gmail.com> | 2016-12-14 17:06:36 -0700 |
|---|---|---|
| committer | Michael Ennen <mike.ennen@gmail.com> | 2017-02-14 17:38:16 -0700 |
| commit | bb7d0deb2f93bd7980a51dca05ae222e751ab632 (patch) | |
| tree | e6b13f4f16dde3eb738cde39b2f3b8db86623eb2 /src/nvim/testdir/Makefile | |
| parent | 6c423989fc5becb294dacedceaac0c2e878a3858 (diff) | |
| download | rneovim-bb7d0deb2f93bd7980a51dca05ae222e751ab632.tar.gz rneovim-bb7d0deb2f93bd7980a51dca05ae222e751ab632.tar.bz2 rneovim-bb7d0deb2f93bd7980a51dca05ae222e751ab632.zip | |
vim-patch:7.4.2044
Problem: filter() and map() either require a string or defining a function.
Solution: Support lambda, a short way to define a function that evaluates an
expression. (Yasuhiro Matsumoto, Ken Takata)
https://github.com/vim/vim/commit/069c1e7fa9f45a665064f7f2c17da84d6a48f544
Diffstat (limited to 'src/nvim/testdir/Makefile')
| -rw-r--r-- | src/nvim/testdir/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nvim/testdir/Makefile b/src/nvim/testdir/Makefile index b8244fa0ec..70163739bf 100644 --- a/src/nvim/testdir/Makefile +++ b/src/nvim/testdir/Makefile @@ -41,6 +41,7 @@ NEW_TESTS ?= \ test_history.res \ test_increment.res \ test_increment_dbcs.res \ + test_lambda.res \ test_langmap.res \ test_match.res \ test_matchadd_conceal.res \ |