Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | fix(completion): correct what modes support fuzzy completion | zeertzjq | 2023-01-17 |
| | |||
* | vim-patch:9.0.0969: matchparen highlight is not updated when switching ↵ | zeertzjq | 2022-11-29 |
| | | | | | | | | | | | buffers (#21227) Problem: Matchparen highlight is not updated when switching buffers. Solution: Listen to the BufLeave and the BufWinEnter autocmd events. (closes vim/vim#11626) https://github.com/vim/vim/commit/28a896f54d4b2f2b4bef8ef4144dde1673c9d6e7 Co-authored-by: Bram Moolenaar <Bram@vim.org> | ||
* | fix(completion): set pum_size even if ext_popupmenu is used (#20648) | zeertzjq | 2022-10-14 |
| | | | | This allows CompleteChanged event to get the correct `v:event.size`. It should be harmless and more consistent to also set `pum_array`. | ||
* | fix(completion): remove wrong FUNC_ATTR_NONNULL_ALL (#19627) | zeertzjq | 2022-08-03 |
| | |||
* | test: move completion :stopinsert test to completion_spec.lua (#17992) | zeertzjq | 2022-04-04 |
| | |||
* | test: add a test for #17489 | zeertzjq | 2022-03-10 |
| | |||
* | 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 |