Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | test: correct order of arguments to eq() and neq() | zeertzjq | 2022-04-26 |
| | |||
* | fix(event-loop): check if executed register has ended | zeertzjq | 2022-04-07 |
| | |||
* | fix(input): fix clearing of reg_executing | zeertzjq | 2022-04-07 |
| | | | | vim-patch:8.2.4705 | ||
* | feat(autocmd): add Recording autocmds | Thomas Vigouroux | 2021-12-18 |
| | | | | | | | | | | | | | | feat(eval): add reg_recorded() This function is used the get the last recorded register. style(Recording): rename handler to match suggestions fix(RecordingLeave): send autocommand earlier This makes the autocommand fire just before setting reg_recorded to reg_recording, this way we clearly show that we are actually just before actually quitting the recording mode. | ||
* | 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 |