Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | test: reorg #15698 | Justin M. Keyes | 2021-09-17 |
| | | | | | | | | | | | | | | | | | | | | Problem: Subdirectories like "visual", "insert", "normal" encourage people to separate *related* tests for no good reason. Typically the _mode_ is not the relevant topic of a test (and when it is, _then_ create an appropriate describe() or it()). Solution: - Delete the various `test/functional/<mode>/` subdirectories, move their tests to more meaningful topics. - Rename `…/normal/` to `…/editor/`. - Move or merge `…/visual/*` and `…/insert/*` tests into here where appropriate. - Rename `…/eval/` to `…/vimscript/`. - Move `…/viml/*` into here also. * test(reorg): insert/* => editor/mode_insert_spec.lua * test(reorg): cmdline/* => editor/mode_cmdline_spec.lua * test(reorg): eval core tests => eval_spec.lua | ||
* | feat(match): allow hl group to be defined after :match command | Björn Linse | 2021-08-19 |
| | |||
* | test: Eliminate expect_err | Justin M. Keyes | 2019-09-06 |
| | | | | Eliminate `expect_err` in favor of `pcall_err` + `eq` or `matches`. | ||
* | API: return non-generic VimL errors | Justin M. Keyes | 2018-05-09 |
| | | | | | | | | | | - Return VimL errors instead of generic errors for: - nvim_call_function - nvim_call_dict_function - Fix tests which were silently broken before this change. This violates #6150 where we agreed not to translate API errors. But that can be fixed later. | ||
* | functests: Fix linter error | ZyX | 2017-12-16 |
| | |||
* | window: Fix matchaddpos() and enhance error reporting | ZyX | 2017-12-15 |
| | |||
* | eval: Move remaining get_tv_string* functions to eval/typval.c | ZyX | 2017-03-29 |
| | |||
* | eval: Make setmatches() return -1 in case of some failures | 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(). |