diff options
| author | watiko <service@mail.watiko.net> | 2015-12-13 12:19:54 +0900 | 
|---|---|---|
| committer | watiko <service@mail.watiko.net> | 2016-01-10 09:01:30 +0900 | 
| commit | 593df501b3a3687abb14a84299716bcd328b6ff8 (patch) | |
| tree | 5b9b9a381ea8f25d60e35a3be65f483703a33a7b /src/nvim/eval.h | |
| parent | 50db0312f941ba489466d7d6b21088f1870429ee (diff) | |
| download | rneovim-593df501b3a3687abb14a84299716bcd328b6ff8.tar.gz rneovim-593df501b3a3687abb14a84299716bcd328b6ff8.tar.bz2 rneovim-593df501b3a3687abb14a84299716bcd328b6ff8.zip | |
vim-patch:7.4.944
Problem:    Writing tests for Vim script is hard.
Solution:   Add assertEqual(), assertFalse() and assertTrue() functions.  Add
            the v:errors variable.  Add the runtest script. Add a first new
            style test script.
https://github.com/vim/vim/commit/43345546ae63710441f066648b8485fb545b3801
Diffstat (limited to 'src/nvim/eval.h')
| -rw-r--r-- | src/nvim/eval.h | 1 | 
1 files changed, 1 insertions, 0 deletions
| diff --git a/src/nvim/eval.h b/src/nvim/eval.h index ea8b5bc253..79a1341d98 100644 --- a/src/nvim/eval.h +++ b/src/nvim/eval.h @@ -111,6 +111,7 @@ enum {      VV_OPTION_NEW,      VV_OPTION_OLD,      VV_OPTION_TYPE, +    VV_ERRORS,      VV_MSGPACK_TYPES,      VV_LEN, /* number of v: vars */  }; | 
