gitextract_29gci10c/ ├── .github/ │ ├── DISCUSSION_TEMPLATE/ │ │ └── q-a.yml │ ├── ISSUE_TEMPLATE/ │ │ ├── bug-report.yml │ │ ├── config.yml │ │ └── feature-request.yml │ ├── PULL_REQUEST_TEMPLATE.md │ └── workflows/ │ └── quality-control.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .stylua.toml ├── .styluaignore ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── MAINTAINING.md ├── Makefile ├── README.md ├── TESTING.md ├── benchmarks/ │ └── starter/ │ ├── .gitignore │ ├── README.md │ ├── benchmark.sh │ ├── init-files/ │ │ ├── init_dashboard-alpha.lua │ │ ├── init_dashboard-original.lua │ │ ├── init_dashboard-starter.lua │ │ ├── init_empty.lua │ │ ├── init_starter-default.lua │ │ ├── init_startify-alpha.lua │ │ ├── init_startify-original.lua │ │ └── init_startify-starter.lua │ ├── install.sh │ ├── make_summary.py │ └── startup-summary.md ├── colors/ │ ├── miniautumn.lua │ ├── minicyan.lua │ ├── minischeme.lua │ ├── minispring.lua │ ├── minisummer.lua │ ├── miniwinter.lua │ └── randomhue.lua ├── doc/ │ ├── mini-ai.txt │ ├── mini-align.txt │ ├── mini-animate.txt │ ├── mini-base16.txt │ ├── mini-basics.txt │ ├── mini-bracketed.txt │ ├── mini-bufremove.txt │ ├── mini-clue.txt │ ├── mini-cmdline.txt │ ├── mini-colors.txt │ ├── mini-comment.txt │ ├── mini-completion.txt │ ├── mini-cursorword.txt │ ├── mini-deps.txt │ ├── mini-diff.txt │ ├── mini-doc.txt │ ├── mini-extra.txt │ ├── mini-files.txt │ ├── mini-fuzzy.txt │ ├── mini-git.txt │ ├── mini-hipatterns.txt │ ├── mini-hues.txt │ ├── mini-icons.txt │ ├── mini-indentscope.txt │ ├── mini-jump.txt │ ├── mini-jump2d.txt │ ├── mini-keymap.txt │ ├── mini-map.txt │ ├── mini-misc.txt │ ├── mini-move.txt │ ├── mini-notify.txt │ ├── mini-nvim.txt │ ├── mini-operators.txt │ ├── mini-pairs.txt │ ├── mini-pick.txt │ ├── mini-sessions.txt │ ├── mini-snippets.txt │ ├── mini-splitjoin.txt │ ├── mini-starter.txt │ ├── mini-statusline.txt │ ├── mini-surround.txt │ ├── mini-tabline.txt │ ├── mini-test.txt │ ├── mini-trailspace.txt │ └── mini-visits.txt ├── lua/ │ └── mini/ │ ├── ai.lua │ ├── align.lua │ ├── animate.lua │ ├── base16.lua │ ├── basics.lua │ ├── bracketed.lua │ ├── bufremove.lua │ ├── clue.lua │ ├── cmdline.lua │ ├── colors.lua │ ├── comment.lua │ ├── completion.lua │ ├── cursorword.lua │ ├── deps.lua │ ├── diff.lua │ ├── doc.lua │ ├── extra.lua │ ├── files.lua │ ├── fuzzy.lua │ ├── git.lua │ ├── hipatterns.lua │ ├── hues.lua │ ├── icons.lua │ ├── indentscope.lua │ ├── init.lua │ ├── jump.lua │ ├── jump2d.lua │ ├── keymap.lua │ ├── map.lua │ ├── misc.lua │ ├── move.lua │ ├── notify.lua │ ├── operators.lua │ ├── pairs.lua │ ├── pick.lua │ ├── sessions.lua │ ├── snippets.lua │ ├── splitjoin.lua │ ├── starter.lua │ ├── statusline.lua │ ├── surround.lua │ ├── tabline.lua │ ├── test.lua │ ├── trailspace.lua │ └── visits.lua ├── readmes/ │ ├── mini-ai.md │ ├── mini-align.md │ ├── mini-animate.md │ ├── mini-base16.md │ ├── mini-basics.md │ ├── mini-bracketed.md │ ├── mini-bufremove.md │ ├── mini-clue.md │ ├── mini-cmdline.md │ ├── mini-colors.md │ ├── mini-comment.md │ ├── mini-completion.md │ ├── mini-cursorword.md │ ├── mini-deps.md │ ├── mini-diff.md │ ├── mini-doc.md │ ├── mini-extra.md │ ├── mini-files.md │ ├── mini-fuzzy.md │ ├── mini-git.md │ ├── mini-hipatterns.md │ ├── mini-hues.md │ ├── mini-icons.md │ ├── mini-indentscope.md │ ├── mini-jump.md │ ├── mini-jump2d.md │ ├── mini-keymap.md │ ├── mini-map.md │ ├── mini-misc.md │ ├── mini-move.md │ ├── mini-notify.md │ ├── mini-operators.md │ ├── mini-pairs.md │ ├── mini-pick.md │ ├── mini-sessions.md │ ├── mini-snippets.md │ ├── mini-splitjoin.md │ ├── mini-starter.md │ ├── mini-statusline.md │ ├── mini-surround.md │ ├── mini-tabline.md │ ├── mini-test.md │ ├── mini-trailspace.md │ └── mini-visits.md ├── scripts/ │ ├── dual_log.sh │ ├── dual_push.sh │ ├── dual_release.sh │ ├── dual_sync.sh │ ├── init-deps-example.lua │ ├── lint-filename-length.sh │ ├── lintcommit-ci.sh │ ├── lintcommit.lua │ ├── minidoc.lua │ ├── minimal_init.lua │ └── minitest.lua └── tests/ ├── dir-ai/ │ └── mock-nvim-treesitter/ │ └── lua/ │ └── nvim-treesitter/ │ ├── init.lua │ └── query.lua ├── dir-bracketed/ │ ├── dir-a/ │ │ └── file-aa │ ├── file-a │ ├── file-b │ ├── file-c │ ├── file-d │ ├── file-e │ └── mock/ │ ├── diagnostic.lua │ └── treesitter.lua ├── dir-cmdline/ │ ├── compiler/ │ │ └── testcompiler.vim │ ├── fileA │ ├── fileB │ ├── keymap/ │ │ └── testkeymap.vim │ └── pack/ │ └── test/ │ └── opt/ │ └── testplugin/ │ └── plugin/ │ └── testplugin.vim ├── dir-colors/ │ └── mock_cs/ │ └── colors/ │ └── mock_cs.lua ├── dir-deps/ │ ├── mocks/ │ │ └── spawn.lua │ ├── pack/ │ │ └── deps/ │ │ └── opt/ │ │ ├── plu-gin_0.nvim/ │ │ │ └── lua/ │ │ │ └── plug_0.lua │ │ ├── plugin_1/ │ │ │ ├── after/ │ │ │ │ └── plugin/ │ │ │ │ ├── plug_1.lua │ │ │ │ ├── plug_1.nonlua │ │ │ │ ├── plug_1.vim │ │ │ │ └── subdir/ │ │ │ │ └── plug_1_sub.lua │ │ │ ├── doc/ │ │ │ │ └── help_1.txt │ │ │ ├── lua/ │ │ │ │ └── plug_1.lua │ │ │ └── plugin/ │ │ │ ├── plug_1.lua │ │ │ ├── plug_1.vim │ │ │ └── subdir/ │ │ │ └── plug_1_sub.lua │ │ ├── plugin_2/ │ │ │ ├── after/ │ │ │ │ └── plugin/ │ │ │ │ └── plug_2.lua │ │ │ ├── doc/ │ │ │ │ └── help_2.txt │ │ │ ├── lua/ │ │ │ │ └── plug_2.lua │ │ │ └── plugin/ │ │ │ └── plug_2.lua │ │ └── plugin_3/ │ │ └── lua/ │ │ └── plug_3.lua │ ├── snapshots/ │ │ ├── not-proper-1 │ │ ├── not-proper-2 │ │ └── snap │ └── test-log ├── dir-diff/ │ ├── file │ ├── file-bom │ ├── git-repo/ │ │ ├── .git-dir/ │ │ │ └── index │ │ └── dir-in-git/ │ │ └── file-in-git │ └── mocks/ │ └── spawn.lua ├── dir-doc/ │ ├── .gitignore │ ├── .styluaignore │ ├── arguments/ │ │ ├── file.lua │ │ ├── file_ignore.lua │ │ └── output_reference.txt │ ├── buffer-local_script.lua │ ├── custom-script/ │ │ ├── gendoc/ │ │ │ └── gendoc-script.lua │ │ ├── init.lua │ │ └── output_reference.txt │ ├── default-collation/ │ │ ├── after/ │ │ │ ├── file01.lua │ │ │ ├── file02.lua │ │ │ └── init.lua │ │ ├── colors/ │ │ │ ├── file01.lua │ │ │ ├── file02.lua │ │ │ └── init.lua │ │ ├── default-collation_reference.txt │ │ ├── file01.lua │ │ ├── file02.lua │ │ ├── init.lua │ │ └── lua/ │ │ ├── aaa/ │ │ │ └── init.lua │ │ ├── file01.lua │ │ ├── file02.lua │ │ └── init.lua │ ├── helpers.lua │ ├── inference/ │ │ ├── inference_reference.txt │ │ └── init.lua │ ├── sections/ │ │ ├── .styluaignore │ │ ├── alias.lua │ │ ├── eval.lua │ │ ├── init.lua │ │ ├── param.lua │ │ ├── return.lua │ │ ├── sections_reference.txt │ │ └── toc.lua │ └── structure/ │ ├── file1.lua │ └── file2.lua ├── dir-extra/ │ ├── colorschemes/ │ │ └── colors/ │ │ └── miniforcebg.lua │ ├── explorer/ │ │ ├── Dir2/ │ │ │ └── file2-1 │ │ ├── File2 │ │ ├── dir1/ │ │ │ ├── file1-1 │ │ │ └── subdir/ │ │ │ └── file1-1-1 │ │ ├── dir3/ │ │ │ └── file3-1 │ │ ├── file1 │ │ └── file3 │ ├── git-files/ │ │ ├── git-file-1 │ │ └── git-file-2 │ ├── lua/ │ │ └── nvim-web-devicons.lua │ ├── mocks/ │ │ ├── diagnostic-file-1 │ │ ├── diagnostic-file-2 │ │ ├── diagnostic.lua │ │ ├── git-commit │ │ ├── git-diff │ │ ├── git-diff-edge-cases │ │ ├── git-diff-unified-0 │ │ ├── git-diff-unified-20 │ │ ├── keymaps.lua │ │ └── spawn.lua │ └── real-files/ │ ├── LICENSE │ ├── Makefile │ ├── a.lua │ └── b.txt ├── dir-files/ │ ├── common/ │ │ ├── .a-dir/ │ │ │ ├── aa-file │ │ │ └── ab-file │ │ ├── .a-file │ │ ├── A-file-2 │ │ ├── a-dir/ │ │ │ ├── aa-dir/ │ │ │ │ └── aaa-file │ │ │ ├── aa-file │ │ │ └── ab-file │ │ ├── a-file │ │ ├── b-dir/ │ │ │ └── ba-file │ │ └── b-file │ ├── init-default-explorer.lua │ ├── lua/ │ │ └── nvim-web-devicons.lua │ ├── mock-win-functions.lua │ ├── nested/ │ │ └── dir-1/ │ │ ├── dir-11/ │ │ │ └── dir-111/ │ │ │ └── dir-1111/ │ │ │ └── dir-11111/ │ │ │ └── file-111111 │ │ └── dir-12/ │ │ └── file-121 │ └── real/ │ ├── LICENSE │ ├── Makefile │ ├── a.lua │ ├── b.txt │ └── top-secret ├── dir-git/ │ ├── File2 │ ├── deps-confirm │ ├── diff-output │ ├── file │ ├── file1 │ ├── file3 │ ├── git-repo/ │ │ ├── .git-dir/ │ │ │ ├── COMMIT_EDITMSG │ │ │ ├── HEAD │ │ │ ├── index │ │ │ └── refs/ │ │ │ └── heads/ │ │ │ └── tmp │ │ ├── dir-in-git/ │ │ │ └── file-in-dir-in-git │ │ ├── file-in-git │ │ └── file-in-git_symlink-source │ ├── help-output │ ├── log-output │ └── mocks/ │ └── spawn.lua ├── dir-keymap/ │ ├── mock-plugins/ │ │ ├── blink.cmp/ │ │ │ └── lua/ │ │ │ └── blink/ │ │ │ └── cmp/ │ │ │ └── init.lua │ │ ├── luasnip/ │ │ │ └── lua/ │ │ │ └── luasnip/ │ │ │ └── init.lua │ │ ├── nvim-autopairs/ │ │ │ └── lua/ │ │ │ └── nvim-autopairs/ │ │ │ └── init.lua │ │ └── nvim-cmp/ │ │ └── lua/ │ │ └── cmp/ │ │ └── init.lua │ └── tree-sitter-tests.lua ├── dir-map/ │ ├── lua/ │ │ └── gitsigns.lua │ ├── mock-diagnostic.lua │ ├── resolution_1x2 │ ├── resolution_2x1 │ ├── resolution_2x2 │ ├── resolution_3x2 │ ├── resolution_4x2 │ └── src-test-integration.lua ├── dir-misc/ │ ├── Makefile │ ├── aaa.lua │ ├── dir/ │ │ ├── lang.aaa │ │ ├── subdir/ │ │ │ └── lang.aaa │ │ └── subdir-2/ │ │ └── lang.aaa │ ├── init-restore-cursor.lua │ ├── lang.aaa │ ├── mocked-git-repo/ │ │ └── bbb.lua │ ├── pack/ │ │ └── bundle/ │ │ └── opt/ │ │ └── mocked-lang-plugin/ │ │ ├── ftdetect/ │ │ │ └── aaa.lua │ │ └── ftplugin/ │ │ ├── aaa.lua │ │ └── lang-aaa.lua │ └── restore-cursor.lua ├── dir-pick/ │ ├── builtin-tests/ │ │ ├── dir1/ │ │ │ ├── file1-1 │ │ │ └── file1-2 │ │ ├── dir2/ │ │ │ └── file2-1 │ │ └── file │ ├── file │ ├── lua/ │ │ └── nvim-web-devicons.lua │ ├── mocks/ │ │ └── spawn.lua │ └── real-files/ │ ├── LICENSE │ ├── Makefile │ ├── a.lua │ └── b.txt ├── dir-sessions/ │ ├── global/ │ │ ├── .session │ │ ├── session1 │ │ ├── session2.vim │ │ ├── session3.lua │ │ ├── session_cd_global │ │ ├── session_cd_local │ │ └── session_cd_local_2 │ ├── init-files/ │ │ ├── autoread.lua │ │ └── autowrite.lua │ └── local/ │ └── alternative-local-session ├── dir-snippets/ │ ├── .styluaignore │ ├── bad-file-cant-decode.json │ ├── bad-file-cant-execute.lua │ ├── bad-file-not-dict-object.json │ ├── bad-file-not-table-return.lua │ ├── file-array.code-snippets │ ├── file-array.json │ ├── file-array.lua │ ├── file-dict.code-snippets │ ├── file-dict.json │ ├── file-dict.lua │ ├── file-dynamic-snippets.lua │ ├── file.many.dots.lua │ ├── file.notsupported │ ├── snippets/ │ │ ├── lua.json │ │ ├── lua.lua │ │ └── nested/ │ │ ├── lua.json │ │ └── lua.lua │ └── subdir/ │ └── snippets/ │ ├── lua/ │ │ ├── deeper/ │ │ │ └── another.json │ │ ├── file.json │ │ └── snips.lua │ ├── lua.code-snippets │ └── lua.json ├── dir-starter/ │ ├── dir/ │ │ ├── file1 │ │ ├── file3 │ │ └── subdir/ │ │ └── file2 │ ├── directory/ │ │ └── file │ ├── init-files/ │ │ └── test-init.lua │ └── sessions/ │ └── session_global.lua ├── dir-statusline/ │ ├── lua/ │ │ └── nvim-web-devicons.lua │ └── mock-diagnostics.lua ├── dir-surround/ │ └── mock-nvim-treesitter/ │ └── lua/ │ └── nvim-treesitter/ │ ├── init.lua │ ├── parsers.lua │ └── query.lua ├── dir-tabline/ │ ├── bad%new.dir/ │ │ └── aaa.lua │ ├── dir1/ │ │ ├── aaa │ │ ├── bad%new.file.lua │ │ └── dir_nested/ │ │ └── aaa │ ├── dir2/ │ │ ├── aaa │ │ └── dir_nested/ │ │ └── aaa │ └── lua/ │ └── nvim-web-devicons.lua ├── dir-test/ │ ├── init_stdout-reporter_works.lua │ ├── intermediate-screenshot │ ├── reference-screenshot │ ├── testref_case-helpers.lua │ ├── testref_collect-busted.lua │ ├── testref_custom-script.lua │ ├── testref_general.lua │ ├── testref_new-set.lua │ ├── testref_reporters.lua │ ├── testref_run-data.lua │ ├── testref_run-hooks.lua │ ├── testref_run-n_retry-stop_on_error.lua │ ├── testref_run-n_retry.lua │ ├── testref_run-parametrize-error.lua │ ├── testref_run-parametrize.lua │ ├── testref_run.lua │ ├── tests-test_test.lua---expect---reference_screenshot()---respects-`opts.directory` │ └── tests-test_test.lua---expect---reference_screenshot()---respects-`opts.directory`-002 ├── dir-trailspace/ │ └── file ├── dir-visits/ │ ├── dir_1/ │ │ ├── file_1-1 │ │ ├── file_1-2 │ │ ├── file_1-3 │ │ └── subdir/ │ │ └── file_1-1-1 │ ├── dir_2/ │ │ └── file_2-1 │ └── file ├── helpers.lua ├── mock-lsp/ │ ├── extra.lua │ ├── fruits.lua │ └── months.lua ├── mock-system/ │ └── vim-system.lua ├── mock-treesitter/ │ ├── lua-file.lua │ └── queries/ │ └── lua/ │ └── textobjects.scm ├── screenshots/ │ ├── tests-dir-test-testref_run-n_retry.lua---screenshot-number---test │ ├── tests-test_ai.lua---Builtin---User-prompt---colors-its-prompts │ ├── tests-test_ai.lua---Builtin---User-prompt---colors-its-prompts-002 │ ├── tests-test_ai.lua---Builtin---User-prompt---colors-its-prompts-003 │ ├── tests-test_ai.lua---Textobject---respects-`config.silent` │ ├── tests-test_ai.lua---Textobject---shows-reminder-after-one-idle-second---test-+-args-{-'a'-} │ ├── tests-test_ai.lua---Textobject---shows-reminder-after-one-idle-second---test-+-args-{-'a'-}-002 │ ├── tests-test_ai.lua---Textobject---shows-reminder-after-one-idle-second---test-+-args-{-'i'-} │ ├── tests-test_ai.lua---Textobject---shows-reminder-after-one-idle-second---test-+-args-{-'i'-}-002 │ ├── tests-test_align.lua---Align---cleans-command-line-only-if-state-was-shown │ ├── tests-test_align.lua---Align---respects-`config.silent` │ ├── tests-test_align.lua---Align---showing-state-does-not-cause-hit-enter-prompt │ ├── tests-test_align.lua---Align---shows-state-after-one-idle-second---test-+-args-{-'Normal'-} │ ├── tests-test_align.lua---Align---shows-state-after-one-idle-second---test-+-args-{-'Normal'-}-002 │ ├── tests-test_align.lua---Align---shows-state-after-one-idle-second---test-+-args-{-'Normal'-}-003 │ ├── tests-test_align.lua---Align---shows-state-after-one-idle-second---test-+-args-{-'Normal'-}-004 │ ├── tests-test_align.lua---Align---shows-state-after-one-idle-second---test-+-args-{-'Normal'-}-005 │ ├── tests-test_align.lua---Align---shows-state-after-one-idle-second---test-+-args-{-'Normal'-}-006 │ ├── tests-test_align.lua---Align---shows-state-after-one-idle-second---test-+-args-{-'Visual'-} │ ├── tests-test_align.lua---Align---shows-state-after-one-idle-second---test-+-args-{-'Visual'-}-002 │ ├── tests-test_align.lua---Align---shows-state-after-one-idle-second---test-+-args-{-'Visual'-}-003 │ ├── tests-test_align.lua---Align---shows-state-after-one-idle-second---test-+-args-{-'Visual'-}-004 │ ├── tests-test_align.lua---Align---shows-state-after-one-idle-second---test-+-args-{-'Visual'-}-005 │ ├── tests-test_align.lua---Align---shows-state-after-one-idle-second---test-+-args-{-'Visual'-}-006 │ ├── tests-test_align.lua---Align-with-preview---correctly-restores-visual-selection---test-+-args-{-'Visual-block'-} │ ├── tests-test_align.lua---Align-with-preview---correctly-restores-visual-selection---test-+-args-{-'Visual-block'-}-002 │ ├── tests-test_align.lua---Align-with-preview---correctly-restores-visual-selection---test-+-args-{-'Visual-char'-} │ ├── tests-test_align.lua---Align-with-preview---correctly-restores-visual-selection---test-+-args-{-'Visual-char'-}-002 │ ├── tests-test_align.lua---Align-with-preview---correctly-restores-visual-selection---test-+-args-{-'Visual-line'-} │ ├── tests-test_align.lua---Align-with-preview---correctly-restores-visual-selection---test-+-args-{-'Visual-line'-}-002 │ ├── tests-test_align.lua---Align-with-preview---correctly-shows-all-steps-in-status │ ├── tests-test_align.lua---Align-with-preview---respects-`config.silent` │ ├── tests-test_align.lua---Align-with-preview---uses-option-names-for-main-steps │ ├── tests-test_align.lua---Align-with-preview---works---test-+-args-{-'Normal-block'-} │ ├── tests-test_align.lua---Align-with-preview---works---test-+-args-{-'Normal-block'-}-002 │ ├── tests-test_align.lua---Align-with-preview---works---test-+-args-{-'Normal-block'-}-003 │ ├── tests-test_align.lua---Align-with-preview---works---test-+-args-{-'Normal-block'-}-004 │ ├── tests-test_align.lua---Align-with-preview---works---test-+-args-{-'Normal-block'-}-005 │ ├── tests-test_align.lua---Align-with-preview---works---test-+-args-{-'Normal-char'-} │ ├── tests-test_align.lua---Align-with-preview---works---test-+-args-{-'Normal-char'-}-002 │ ├── tests-test_align.lua---Align-with-preview---works---test-+-args-{-'Normal-char'-}-003 │ ├── tests-test_align.lua---Align-with-preview---works---test-+-args-{-'Normal-char'-}-004 │ ├── tests-test_align.lua---Align-with-preview---works---test-+-args-{-'Normal-char'-}-005 │ ├── tests-test_align.lua---Align-with-preview---works---test-+-args-{-'Normal-line'-} │ ├── tests-test_align.lua---Align-with-preview---works---test-+-args-{-'Normal-line'-}-002 │ ├── tests-test_align.lua---Align-with-preview---works---test-+-args-{-'Normal-line'-}-003 │ ├── tests-test_align.lua---Align-with-preview---works---test-+-args-{-'Normal-line'-}-004 │ ├── tests-test_align.lua---Align-with-preview---works---test-+-args-{-'Normal-line'-}-005 │ ├── tests-test_align.lua---Align-with-preview---works---test-+-args-{-'Visual-block'-} │ ├── tests-test_align.lua---Align-with-preview---works---test-+-args-{-'Visual-block'-}-002 │ ├── tests-test_align.lua---Align-with-preview---works---test-+-args-{-'Visual-block'-}-003 │ ├── tests-test_align.lua---Align-with-preview---works---test-+-args-{-'Visual-block'-}-004 │ ├── tests-test_align.lua---Align-with-preview---works---test-+-args-{-'Visual-block'-}-005 │ ├── tests-test_align.lua---Align-with-preview---works---test-+-args-{-'Visual-char'-} │ ├── tests-test_align.lua---Align-with-preview---works---test-+-args-{-'Visual-char'-}-002 │ ├── tests-test_align.lua---Align-with-preview---works---test-+-args-{-'Visual-char'-}-003 │ ├── tests-test_align.lua---Align-with-preview---works---test-+-args-{-'Visual-char'-}-004 │ ├── tests-test_align.lua---Align-with-preview---works---test-+-args-{-'Visual-char'-}-005 │ ├── tests-test_align.lua---Align-with-preview---works---test-+-args-{-'Visual-line'-} │ ├── tests-test_align.lua---Align-with-preview---works---test-+-args-{-'Visual-line'-}-002 │ ├── tests-test_align.lua---Align-with-preview---works---test-+-args-{-'Visual-line'-}-003 │ ├── tests-test_align.lua---Align-with-preview---works---test-+-args-{-'Visual-line'-}-004 │ ├── tests-test_align.lua---Align-with-preview---works---test-+-args-{-'Visual-line'-}-005 │ ├── tests-test_align.lua---Modifiers----BS----does-nothing-if-no-pre-steps │ ├── tests-test_align.lua---Modifiers----BS----does-nothing-if-no-pre-steps-002 │ ├── tests-test_align.lua---Modifiers----BS----prompts-to-choose-if-ambiguous │ ├── tests-test_align.lua---Modifiers----BS----prompts-to-choose-if-ambiguous-002 │ ├── tests-test_align.lua---Modifiers----BS----prompts-to-choose-if-ambiguous-003 │ ├── tests-test_align.lua---Modifiers----BS----prompts-to-choose-if-ambiguous-004 │ ├── tests-test_align.lua---Modifiers----BS----prompts-to-choose-if-ambiguous-005 │ ├── tests-test_align.lua---Modifiers----BS----works---test-+-args-{-'pre_justify'-} │ ├── tests-test_align.lua---Modifiers----BS----works---test-+-args-{-'pre_justify'-}-002 │ ├── tests-test_align.lua---Modifiers----BS----works---test-+-args-{-'pre_merge'-} │ ├── tests-test_align.lua---Modifiers----BS----works---test-+-args-{-'pre_merge'-}-002 │ ├── tests-test_align.lua---Modifiers----BS----works---test-+-args-{-'pre_split'-} │ ├── tests-test_align.lua---Modifiers----BS----works---test-+-args-{-'pre_split'-}-002 │ ├── tests-test_align.lua---Modifiers----bar- │ ├── tests-test_align.lua---Modifiers----bar--002 │ ├── tests-test_align.lua---Modifiers----comma- │ ├── tests-test_align.lua---Modifiers----comma--002 │ ├── tests-test_align.lua---Modifiers----equal-sign- │ ├── tests-test_align.lua---Modifiers----equal-sign--002 │ ├── tests-test_align.lua---Modifiers----space-bar- │ ├── tests-test_align.lua---Modifiers----space-bar--002 │ ├── tests-test_align.lua---Modifiers---f---allows-empty-input │ ├── tests-test_align.lua---Modifiers---f---works │ ├── tests-test_align.lua---Modifiers---i---works │ ├── tests-test_align.lua---Modifiers---i---works-002 │ ├── tests-test_align.lua---Modifiers---j---works---test-+-args-{-'c'-} │ ├── tests-test_align.lua---Modifiers---j---works---test-+-args-{-'c'-}-002 │ ├── tests-test_align.lua---Modifiers---j---works---test-+-args-{-'l'-} │ ├── tests-test_align.lua---Modifiers---j---works---test-+-args-{-'l'-}-002 │ ├── tests-test_align.lua---Modifiers---j---works---test-+-args-{-'n'-} │ ├── tests-test_align.lua---Modifiers---j---works---test-+-args-{-'n'-}-002 │ ├── tests-test_align.lua---Modifiers---j---works---test-+-args-{-'r'-} │ ├── tests-test_align.lua---Modifiers---j---works---test-+-args-{-'r'-}-002 │ ├── tests-test_align.lua---Modifiers---j---works---test-+-args-{-'u'-} │ ├── tests-test_align.lua---Modifiers---j---works---test-+-args-{-'u'-}-002 │ ├── tests-test_align.lua---Modifiers---m---works │ ├── tests-test_align.lua---Modifiers---m---works-002 │ ├── tests-test_align.lua---Modifiers---p---works │ ├── tests-test_align.lua---Modifiers---s---works │ ├── tests-test_align.lua---Modifiers---s---works-002 │ ├── tests-test_align.lua---Modifiers---t---works │ ├── tests-test_animate.lua---Cursor---can-have-only-one-animation-active │ ├── tests-test_animate.lua---Cursor---can-have-only-one-animation-active-002 │ ├── tests-test_animate.lua---Cursor---can-have-only-one-animation-active-003 │ ├── tests-test_animate.lua---Cursor---can-have-only-one-animation-active-004 │ ├── tests-test_animate.lua---Cursor---does-not-stop-if-mark-should-be-placed-outside-of-range │ ├── tests-test_animate.lua---Cursor---does-not-stop-if-mark-should-be-placed-outside-of-range-002 │ ├── tests-test_animate.lua---Cursor---does-not-stop-if-mark-should-be-placed-outside-of-range-003 │ ├── tests-test_animate.lua---Cursor---does-not-stop-if-mark-should-be-placed-outside-of-range-004 │ ├── tests-test_animate.lua---Cursor---does-not-stop-if-mark-should-be-placed-outside-of-range-005 │ ├── tests-test_animate.lua---Cursor---does-not-stop-if-mark-should-be-placed-outside-of-range-006 │ ├── tests-test_animate.lua---Cursor---is-not-animated-if-`path`-output-is-empty-or-`nil` │ ├── tests-test_animate.lua---Cursor---is-not-animated-if-`path`-output-is-empty-or-`nil`-002 │ ├── tests-test_animate.lua---Cursor---respects-`enable`-config-setting │ ├── tests-test_animate.lua---Cursor---respects-`vim.{g,b}.minianimate_disable`---test-+-args-{-'b'-} │ ├── tests-test_animate.lua---Cursor---respects-`vim.{g,b}.minianimate_disable`---test-+-args-{-'b'-}-002 │ ├── tests-test_animate.lua---Cursor---respects-`vim.{g,b}.minianimate_disable`---test-+-args-{-'g'-} │ ├── tests-test_animate.lua---Cursor---respects-`vim.{g,b}.minianimate_disable`---test-+-args-{-'g'-}-002 │ ├── tests-test_animate.lua---Cursor---respects-buffer-local-config │ ├── tests-test_animate.lua---Cursor---stops-on-buffer-change │ ├── tests-test_animate.lua---Cursor---stops-on-buffer-change-002 │ ├── tests-test_animate.lua---Cursor---stops-on-buffer-change-003 │ ├── tests-test_animate.lua---Cursor---stops-on-buffer-change-004 │ ├── tests-test_animate.lua---Cursor---stops-on-buffer-change-005 │ ├── tests-test_animate.lua---Cursor---works │ ├── tests-test_animate.lua---Cursor---works-002 │ ├── tests-test_animate.lua---Cursor---works-003 │ ├── tests-test_animate.lua---Cursor---works-004 │ ├── tests-test_animate.lua---Cursor---works-005 │ ├── tests-test_animate.lua---Cursor---works-when-cursor-and-or-marks-are-outside-of-line │ ├── tests-test_animate.lua---Cursor---works-when-cursor-and-or-marks-are-outside-of-line-002 │ ├── tests-test_animate.lua---Cursor---works-when-cursor-and-or-marks-are-outside-of-line-003 │ ├── tests-test_animate.lua---Cursor---works-when-cursor-and-or-marks-are-outside-of-line-004 │ ├── tests-test_animate.lua---Cursor---works-when-cursor-and-or-marks-are-outside-of-line-005 │ ├── tests-test_animate.lua---Cursor---works-when-cursor-and-or-marks-are-outside-of-line-006 │ ├── tests-test_animate.lua---Cursor---works-when-cursor-and-or-marks-are-outside-of-line-007 │ ├── tests-test_animate.lua---Cursor---works-when-cursor-and-or-marks-are-outside-of-line-008 │ ├── tests-test_animate.lua---Cursor---works-when-cursor-and-or-marks-are-outside-of-line-009 │ ├── tests-test_animate.lua---Cursor---works-when-movement-is-triggered-by-outside-command │ ├── tests-test_animate.lua---Cursor---works-when-movement-is-triggered-by-outside-command-002 │ ├── tests-test_animate.lua---Cursor---works-when-movement-is-triggered-by-outside-command-003 │ ├── tests-test_animate.lua---Cursor---works-when-movement-is-triggered-by-outside-command-004 │ ├── tests-test_animate.lua---Cursor---works-when-movement-is-triggered-by-outside-command-005 │ ├── tests-test_animate.lua---Cursor---works-with-horizontally-scrolled-window-view │ ├── tests-test_animate.lua---Cursor---works-with-horizontally-scrolled-window-view-002 │ ├── tests-test_animate.lua---Cursor---works-with-horizontally-scrolled-window-view-003 │ ├── tests-test_animate.lua---Cursor---works-with-horizontally-scrolled-window-view-004 │ ├── tests-test_animate.lua---Cursor---works-with-horizontally-scrolled-window-view-005 │ ├── tests-test_animate.lua---Cursor---works-with-multibyte-characters │ ├── tests-test_animate.lua---Cursor---works-with-multibyte-characters-002 │ ├── tests-test_animate.lua---Cursor---works-with-multibyte-characters-003 │ ├── tests-test_animate.lua---Cursor---works-with-multibyte-characters-004 │ ├── tests-test_animate.lua---Cursor---works-with-multibyte-characters-005 │ ├── tests-test_animate.lua---Cursor---works-with-multibyte-characters-006 │ ├── tests-test_animate.lua---Cursor---works-with-multibyte-characters-007 │ ├── tests-test_animate.lua---Cursor---works-with-multibyte-characters-008 │ ├── tests-test_animate.lua---Cursor---works-with-tabs │ ├── tests-test_animate.lua---Cursor---works-with-tabs-002 │ ├── tests-test_animate.lua---Cursor---works-with-tabs-003 │ ├── tests-test_animate.lua---Cursor---works-with-tabs-004 │ ├── tests-test_animate.lua---Cursor---works-with-tabs-005 │ ├── tests-test_animate.lua---Cursor---works-with-tabs-006 │ ├── tests-test_animate.lua---Resize---allows-immediate-another-resize-animation │ ├── tests-test_animate.lua---Resize---allows-immediate-another-resize-animation-002 │ ├── tests-test_animate.lua---Resize---allows-immediate-another-resize-animation-003 │ ├── tests-test_animate.lua---Resize---allows-immediate-another-resize-animation-004 │ ├── tests-test_animate.lua---Resize---allows-immediate-another-resize-animation-005 │ ├── tests-test_animate.lua---Resize---allows-immediate-another-resize-animation-006 │ ├── tests-test_animate.lua---Resize---allows-immediate-another-resize-animation-007 │ ├── tests-test_animate.lua---Resize---allows-immediate-another-resize-animation-008 │ ├── tests-test_animate.lua---Resize---allows-immediate-another-resize-animation-009 │ ├── tests-test_animate.lua---Resize---animates-only-for-equal-layouts │ ├── tests-test_animate.lua---Resize---animates-only-for-equal-layouts-002 │ ├── tests-test_animate.lua---Resize---does-not-flicker-due-to-high-cursor-column │ ├── tests-test_animate.lua---Resize---does-not-flicker-due-to-high-cursor-column-002 │ ├── tests-test_animate.lua---Resize---does-not-flicker-due-to-high-cursor-column-003 │ ├── tests-test_animate.lua---Resize---does-not-flicker-due-to-high-cursor-column-004 │ ├── tests-test_animate.lua---Resize---does-not-flicker-due-to-high-cursor-column-005 │ ├── tests-test_animate.lua---Resize---does-not-flicker-due-to-high-cursor-column-006 │ ├── tests-test_animate.lua---Resize---does-not-flicker-due-to-high-cursor-column-in-current-window │ ├── tests-test_animate.lua---Resize---does-not-flicker-due-to-high-cursor-column-in-current-window-002 │ ├── tests-test_animate.lua---Resize---does-not-flicker-due-to-high-cursor-column-in-current-window-003 │ ├── tests-test_animate.lua---Resize---does-not-flicker-due-to-high-cursor-column-in-current-window-004 │ ├── tests-test_animate.lua---Resize---does-not-flicker-due-to-high-cursor-column-in-current-window-005 │ ├── tests-test_animate.lua---Resize---does-not-flicker-due-to-high-cursor-column-in-current-window-006 │ ├── tests-test_animate.lua---Resize---does-not-flicker-due-to-high-cursor-column-in-current-window-007 │ ├── tests-test_animate.lua---Resize---does-not-flicker-due-to-high-cursor-column-in-current-window-008 │ ├── tests-test_animate.lua---Resize---does-not-flicker-due-to-high-cursor-column-in-current-window-009 │ ├── tests-test_animate.lua---Resize---does-not-flicker-due-to-high-cursor-column-in-current-window-010 │ ├── tests-test_animate.lua---Resize---does-not-flicker-due-to-high-cursor-column-in-current-window-011 │ ├── tests-test_animate.lua---Resize---is-not-animated-if-`subresize`-output-is-empty-or-`nil` │ ├── tests-test_animate.lua---Resize---is-not-animated-if-`subresize`-output-is-empty-or-`nil`-002 │ ├── tests-test_animate.lua---Resize---respects-`enable`-config-setting │ ├── tests-test_animate.lua---Resize---respects-`vim.{g,b}.minianimate_disable`---test-+-args-{-'b'-} │ ├── tests-test_animate.lua---Resize---respects-`vim.{g,b}.minianimate_disable`---test-+-args-{-'b'-}-002 │ ├── tests-test_animate.lua---Resize---respects-`vim.{g,b}.minianimate_disable`---test-+-args-{-'b'-}-003 │ ├── tests-test_animate.lua---Resize---respects-`vim.{g,b}.minianimate_disable`---test-+-args-{-'g'-} │ ├── tests-test_animate.lua---Resize---respects-`vim.{g,b}.minianimate_disable`---test-+-args-{-'g'-}-002 │ ├── tests-test_animate.lua---Resize---respects-`vim.{g,b}.minianimate_disable`---test-+-args-{-'g'-}-003 │ ├── tests-test_animate.lua---Resize---respects-buffer-local-config │ ├── tests-test_animate.lua---Resize---works │ ├── tests-test_animate.lua---Resize---works-002 │ ├── tests-test_animate.lua---Resize---works-003 │ ├── tests-test_animate.lua---Resize---works-004 │ ├── tests-test_animate.lua---Resize---works-005 │ ├── tests-test_animate.lua---Resize---works-006 │ ├── tests-test_animate.lua---Resize---works-007 │ ├── tests-test_animate.lua---Resize---works-008 │ ├── tests-test_animate.lua---Resize---works-009 │ ├── tests-test_animate.lua---Resize---works-010 │ ├── tests-test_animate.lua---Resize---works-011 │ ├── tests-test_animate.lua---Resize---works-012 │ ├── tests-test_animate.lua---Resize---works-013 │ ├── tests-test_animate.lua---Resize---works-014 │ ├── tests-test_animate.lua---Resize---works-015 │ ├── tests-test_animate.lua---Resize---works-016 │ ├── tests-test_animate.lua---Resize---works-017 │ ├── tests-test_animate.lua---Resize---works-when-resize-is-triggered-by-outside-command │ ├── tests-test_animate.lua---Resize---works-when-resize-is-triggered-by-outside-command-002 │ ├── tests-test_animate.lua---Resize---works-when-resize-is-triggered-by-outside-command-003 │ ├── tests-test_animate.lua---Resize---works-when-resize-is-triggered-by-outside-command-004 │ ├── tests-test_animate.lua---Resize---works-with-`winheight`-`winwidth` │ ├── tests-test_animate.lua---Resize---works-with-`winheight`-`winwidth`-002 │ ├── tests-test_animate.lua---Resize---works-with-`winheight`-`winwidth`-003 │ ├── tests-test_animate.lua---Resize---works-with-`winheight`-`winwidth`-004 │ ├── tests-test_animate.lua---Resize---works-with-`winheight`-`winwidth`-005 │ ├── tests-test_animate.lua---Resize---works-with-`winheight`-`winwidth`-006 │ ├── tests-test_animate.lua---Resize---works-with-`winheight`-`winwidth`-007 │ ├── tests-test_animate.lua---Resize---works-with-`winheight`-`winwidth`-008 │ ├── tests-test_animate.lua---Resize---works-with-`winheight`-`winwidth`-009 │ ├── tests-test_animate.lua---Resize---works-with-`winheight`-`winwidth`-010 │ ├── tests-test_animate.lua---Resize---works-with-`winheight`-`winwidth`-011 │ ├── tests-test_animate.lua---Resize---works-with-`winheight`-`winwidth`-012 │ ├── tests-test_animate.lua---Resize---works-with-`winheight`-`winwidth`-013 │ ├── tests-test_animate.lua---Resize---works-with-`winheight`-`winwidth`-014 │ ├── tests-test_animate.lua---Resize---works-with-`winheight`-`winwidth`-015 │ ├── tests-test_animate.lua---Resize---works-with-`winheight`-`winwidth`-016 │ ├── tests-test_animate.lua---Resize---works-with-`winheight`-`winwidth`-017 │ ├── tests-test_animate.lua---Resize---works-with-`winheight`-`winwidth`-018 │ ├── tests-test_animate.lua---Resize---works-with-`winheight`-`winwidth`-019 │ ├── tests-test_animate.lua---Scroll---allows-immediate-another-scroll-animation │ ├── tests-test_animate.lua---Scroll---allows-immediate-another-scroll-animation-002 │ ├── tests-test_animate.lua---Scroll---allows-immediate-another-scroll-animation-003 │ ├── tests-test_animate.lua---Scroll---allows-immediate-another-scroll-animation-004 │ ├── tests-test_animate.lua---Scroll---allows-immediate-another-scroll-animation-005 │ ├── tests-test_animate.lua---Scroll---allows-immediate-another-scroll-animation-006 │ ├── tests-test_animate.lua---Scroll---does-not-animate-in-Select-mode │ ├── tests-test_animate.lua---Scroll---does-not-automatically-animate-after-buffer-change │ ├── tests-test_animate.lua---Scroll---does-not-automatically-animate-after-buffer-change-002 │ ├── tests-test_animate.lua---Scroll---does-not-automatically-animate-result-of-'incsearch' │ ├── tests-test_animate.lua---Scroll---does-not-automatically-animate-result-of-'incsearch'-002 │ ├── tests-test_animate.lua---Scroll---does-not-automatically-animate-result-of-'incsearch'-003 │ ├── tests-test_animate.lua---Scroll---does-not-automatically-animate-result-of-'incsearch'-004 │ ├── tests-test_animate.lua---Scroll---handles-mappings-with--Cmd--CR- │ ├── tests-test_animate.lua---Scroll---handles-mappings-with--Cmd--CR--002 │ ├── tests-test_animate.lua---Scroll---respects-'scrolloff'-in-presence-of-folds │ ├── tests-test_animate.lua---Scroll---respects-'scrolloff'-in-presence-of-folds-002 │ ├── tests-test_animate.lua---Scroll---respects-'scrolloff'-in-presence-of-folds-003 │ ├── tests-test_animate.lua---Scroll---respects-'scrolloff'-in-presence-of-folds-004 │ ├── tests-test_animate.lua---Scroll---respects-'scrolloff'-in-presence-of-folds-005 │ ├── tests-test_animate.lua---Scroll---respects-folds │ ├── tests-test_animate.lua---Scroll---respects-folds-002 │ ├── tests-test_animate.lua---Scroll---respects-folds-003 │ ├── tests-test_animate.lua---Scroll---respects-folds-004 │ ├── tests-test_animate.lua---Scroll---respects-folds-005 │ ├── tests-test_animate.lua---Scroll---respects-global-'scrolloff' │ ├── tests-test_animate.lua---Scroll---respects-global-'scrolloff'-002 │ ├── tests-test_animate.lua---Scroll---respects-global-'scrolloff'-003 │ ├── tests-test_animate.lua---Scroll---respects-global-'scrolloff'-004 │ ├── tests-test_animate.lua---Scroll---respects-global-'scrolloff'-005 │ ├── tests-test_animate.lua---Scroll---respects-window-local-'scrolloff' │ ├── tests-test_animate.lua---Scroll---respects-window-local-'scrolloff'-002 │ ├── tests-test_animate.lua---Scroll---respects-window-local-'scrolloff'-003 │ ├── tests-test_animate.lua---Scroll---respects-window-local-'scrolloff'-004 │ ├── tests-test_animate.lua---Scroll---respects-window-local-'scrolloff'-005 │ ├── tests-test_animate.lua---Scroll---stops-on-buffer-change │ ├── tests-test_animate.lua---Scroll---stops-on-buffer-change-002 │ ├── tests-test_animate.lua---Scroll---stops-on-buffer-change-003 │ ├── tests-test_animate.lua---Scroll---stops-on-buffer-change-004 │ ├── tests-test_animate.lua---Scroll---stops-on-window-change │ ├── tests-test_animate.lua---Scroll---stops-on-window-change-002 │ ├── tests-test_animate.lua---Scroll---stops-on-window-change-003 │ ├── tests-test_animate.lua---Scroll---stops-on-window-change-004 │ ├── tests-test_animate.lua---Scroll---works │ ├── tests-test_animate.lua---Scroll---works-002 │ ├── tests-test_animate.lua---Scroll---works-003 │ ├── tests-test_animate.lua---Scroll---works-004 │ ├── tests-test_animate.lua---Scroll---works-005 │ ├── tests-test_animate.lua---Scroll---works-006 │ ├── tests-test_animate.lua---Scroll---works-007 │ ├── tests-test_animate.lua---Scroll---works-008 │ ├── tests-test_animate.lua---Scroll---works-009 │ ├── tests-test_animate.lua---Scroll---works-010 │ ├── tests-test_animate.lua---Scroll---works-properly-just-after-buffer-change │ ├── tests-test_animate.lua---Scroll---works-properly-just-after-buffer-change-002 │ ├── tests-test_animate.lua---Scroll---works-properly-just-after-window-change │ ├── tests-test_animate.lua---Scroll---works-properly-just-after-window-change-002 │ ├── tests-test_animate.lua---Scroll---works-when-movement-is-triggered-by-outside-command │ ├── tests-test_animate.lua---Scroll---works-when-movement-is-triggered-by-outside-command-002 │ ├── tests-test_animate.lua---Scroll---works-when-movement-is-triggered-by-outside-command-003 │ ├── tests-test_animate.lua---Scroll---works-when-movement-is-triggered-by-outside-command-004 │ ├── tests-test_animate.lua---Scroll---works-when-movement-is-triggered-by-outside-command-005 │ ├── tests-test_basics.lua---Mappings---Toggle-options---respects-`config.silent` │ ├── tests-test_basics.lua---Mappings---Toggle-options---shows-feedback-about-new-value │ ├── tests-test_clue.lua---'mini.nvim'-compatibility---mini.align │ ├── tests-test_clue.lua---'mini.nvim'-compatibility---mini.align-002 │ ├── tests-test_clue.lua---Clues---are-properly-sorted │ ├── tests-test_clue.lua---Clues---can-be-configured-after-load │ ├── tests-test_clue.lua---Clues---can-be-overridden-in-later-entries │ ├── tests-test_clue.lua---Clues---can-have-callable-description │ ├── tests-test_clue.lua---Clues---can-have-callables │ ├── tests-test_clue.lua---Clues---can-have-callables-002 │ ├── tests-test_clue.lua---Clues---can-have-callables-003 │ ├── tests-test_clue.lua---Clues---can-have-callables-004 │ ├── tests-test_clue.lua---Clues---can-have-nested-subarrays │ ├── tests-test_clue.lua---Clues---handles-an-array-of-modes │ ├── tests-test_clue.lua---Clues---handles-an-array-of-modes-002 │ ├── tests-test_clue.lua---Clues---handles-no-description │ ├── tests-test_clue.lua---Clues---handles-showing-group-clues-after-executing-key-with-postkeys │ ├── tests-test_clue.lua---Clues---handles-showing-group-clues-after-executing-key-with-postkeys-002 │ ├── tests-test_clue.lua---Clues---has-proper-precedence │ ├── tests-test_clue.lua---Clues---respects-`vim.b.miniclue_config` │ ├── tests-test_clue.lua---Clues---shows-as-group-a-single-non-exact-clue │ ├── tests-test_clue.lua---Clues---shows-as-group-a-single-non-exact-clue-002 │ ├── tests-test_clue.lua---Clues---shows-as-group-a-single-non-exact-clue-003 │ ├── tests-test_clue.lua---Clues---silently-ignores-non-valid-clues │ ├── tests-test_clue.lua---Clues---uses-human-readable-names-for-special-keys │ ├── tests-test_clue.lua---Postkeys---closes-window-if-postkeys-do-not-end-up-key-querying │ ├── tests-test_clue.lua---Postkeys---persists-window-if-action-changes-tabpage │ ├── tests-test_clue.lua---Postkeys---persists-window-if-action-changes-tabpage-002 │ ├── tests-test_clue.lua---Postkeys---shows-window-immediately │ ├── tests-test_clue.lua---Postkeys---works │ ├── tests-test_clue.lua---Postkeys---works-002 │ ├── tests-test_clue.lua---Postkeys---works-003 │ ├── tests-test_clue.lua---Postkeys---works-in-edge-cases │ ├── tests-test_clue.lua---Postkeys---works-in-edge-cases-002 │ ├── tests-test_clue.lua---Postkeys---works-in-edge-cases-003 │ ├── tests-test_clue.lua---Querying-keys---does-not-entirely-block-redraws │ ├── tests-test_clue.lua---Querying-keys---does-not-entirely-block-redraws-002 │ ├── tests-test_clue.lua---Querying-keys---takes-into-account-user-supplied-clues │ ├── tests-test_clue.lua---Querying-keys---takes-into-account-user-supplied-clues-002 │ ├── tests-test_clue.lua---Showing-keys---allows-zero-delay │ ├── tests-test_clue.lua---Showing-keys---can-have-'auto'-for-`row`-and-`col`-in-window-config │ ├── tests-test_clue.lua---Showing-keys---can-have-'auto'-for-`row`-and-`col`-in-window-config-002 │ ├── tests-test_clue.lua---Showing-keys---can-have-'auto'-for-`row`-and-`col`-in-window-config-003 │ ├── tests-test_clue.lua---Showing-keys---can-have-'auto'-for-`row`-and-`col`-in-window-config-004 │ ├── tests-test_clue.lua---Showing-keys---can-have-`config.window.config.width='auto'` │ ├── tests-test_clue.lua---Showing-keys---can-have-callable-`config.window.config` │ ├── tests-test_clue.lua---Showing-keys---can-work-with-small-instance-dimensions │ ├── tests-test_clue.lua---Showing-keys---does-not-trigger-unnecessary-events │ ├── tests-test_clue.lua---Showing-keys---highlights-group-descriptions-differently │ ├── tests-test_clue.lua---Showing-keys---highlights-next-key-with-postkeys-differently │ ├── tests-test_clue.lua---Showing-keys---indicates-that-description-is-truncated │ ├── tests-test_clue.lua---Showing-keys---properly-translates-special-keys │ ├── tests-test_clue.lua---Showing-keys---properly-translates-special-keys-002 │ ├── tests-test_clue.lua---Showing-keys---properly-translates-special-keys-003 │ ├── tests-test_clue.lua---Showing-keys---properly-translates-special-keys-004 │ ├── tests-test_clue.lua---Showing-keys---reacts-to-`VimResized` │ ├── tests-test_clue.lua---Showing-keys---reacts-to-`VimResized`-002 │ ├── tests-test_clue.lua---Showing-keys---respects-'winborder'-option │ ├── tests-test_clue.lua---Showing-keys---respects-'winborder'-option-002 │ ├── tests-test_clue.lua---Showing-keys---respects-'winborder'-option-003 │ ├── tests-test_clue.lua---Showing-keys---respects-`config.window.config` │ ├── tests-test_clue.lua---Showing-keys---respects-`config.window.config`-002 │ ├── tests-test_clue.lua---Showing-keys---respects-`config.window.delay` │ ├── tests-test_clue.lua---Showing-keys---respects-`config.window.delay`-002 │ ├── tests-test_clue.lua---Showing-keys---respects-`config.window.delay`-003 │ ├── tests-test_clue.lua---Showing-keys---respects-`scroll_down`-and-`scroll_up`-in-`config.window` │ ├── tests-test_clue.lua---Showing-keys---respects-`scroll_down`-and-`scroll_up`-in-`config.window`-002 │ ├── tests-test_clue.lua---Showing-keys---respects-`scroll_down`-and-`scroll_up`-in-`config.window`-003 │ ├── tests-test_clue.lua---Showing-keys---respects-`scroll_down`-and-`scroll_up`-in-`config.window`-004 │ ├── tests-test_clue.lua---Showing-keys---respects-`scroll_down`-and-`scroll_up`-in-`config.window`-005 │ ├── tests-test_clue.lua---Showing-keys---respects-`scroll_down`-and-`scroll_up`-in-`config.window`-006 │ ├── tests-test_clue.lua---Showing-keys---respects-`scroll_down`-and-`scroll_up`-in-`config.window`-007 │ ├── tests-test_clue.lua---Showing-keys---respects-`scroll_down`-and-`scroll_up`-in-`config.window`-008 │ ├── tests-test_clue.lua---Showing-keys---respects-`scroll_down`-and-`scroll_up`-in-`config.window`-009 │ ├── tests-test_clue.lua---Showing-keys---respects-`scroll_down`-and-`scroll_up`-in-`config.window`-010 │ ├── tests-test_clue.lua---Showing-keys---respects-`vim.b.miniclue_config` │ ├── tests-test_clue.lua---Showing-keys---respects-tabline,-statusline,-cmdheight │ ├── tests-test_clue.lua---Showing-keys---respects-tabline,-statusline,-cmdheight-002 │ ├── tests-test_clue.lua---Showing-keys---respects-tabline,-statusline,-cmdheight-003 │ ├── tests-test_clue.lua---Showing-keys---respects-tabline,-statusline,-cmdheight-004 │ ├── tests-test_clue.lua---Showing-keys---scroll-is-not-persistent │ ├── tests-test_clue.lua---Showing-keys---scroll-is-not-persistent-002 │ ├── tests-test_clue.lua---Showing-keys---scroll-is-not-persistent-003 │ ├── tests-test_clue.lua---Showing-keys---uses-query-clue-as-title │ ├── tests-test_clue.lua---Showing-keys---uses-query-clue-as-title-002 │ ├── tests-test_clue.lua---Showing-keys---uses-query-clue-as-title-003 │ ├── tests-test_clue.lua---Showing-keys---uses-query-clue-as-title-004 │ ├── tests-test_clue.lua---Showing-keys---uses-query-clue-as-title-005 │ ├── tests-test_clue.lua---Showing-keys---uses-query-clue-as-title-006 │ ├── tests-test_clue.lua---Showing-keys---uses-query-clue-as-title-007 │ ├── tests-test_clue.lua---Showing-keys---uses-query-clue-as-title-008 │ ├── tests-test_clue.lua---Showing-keys---works │ ├── tests-test_clue.lua---Showing-keys---works-002 │ ├── tests-test_clue.lua---Showing-keys---works-003 │ ├── tests-test_clue.lua---Showing-keys---works-in-Command-line-window │ ├── tests-test_clue.lua---Showing-keys---works-in-Command-line-window-002 │ ├── tests-test_clue.lua---Showing-keys---works-with-multibyte-characters │ ├── tests-test_clue.lua---Showing-keys---works-with-multibyte-characters-002 │ ├── tests-test_clue.lua---Showing-keys---works-with-small-available-dimensions │ ├── tests-test_clue.lua---ensure_all_triggers()---works │ ├── tests-test_clue.lua---ensure_all_triggers()---works-002 │ ├── tests-test_clue.lua---ensure_buf_triggers()---works │ ├── tests-test_clue.lua---gen_clues---builtin_completion()---works │ ├── tests-test_clue.lua---gen_clues---g()---works │ ├── tests-test_clue.lua---gen_clues---g()---works-002 │ ├── tests-test_clue.lua---gen_clues---marks()---works │ ├── tests-test_clue.lua---gen_clues---marks()---works-002 │ ├── tests-test_clue.lua---gen_clues---marks()---works-003 │ ├── tests-test_clue.lua---gen_clues---marks()---works-004 │ ├── tests-test_clue.lua---gen_clues---marks()---works-005 │ ├── tests-test_clue.lua---gen_clues---marks()---works-006 │ ├── tests-test_clue.lua---gen_clues---marks()---works-007 │ ├── tests-test_clue.lua---gen_clues---marks()---works-008 │ ├── tests-test_clue.lua---gen_clues---registers()---respects-`opts.show_contents` │ ├── tests-test_clue.lua---gen_clues---registers()---works │ ├── tests-test_clue.lua---gen_clues---registers()---works-002 │ ├── tests-test_clue.lua---gen_clues---registers()---works-003 │ ├── tests-test_clue.lua---gen_clues---registers()---works-004 │ ├── tests-test_clue.lua---gen_clues---registers()---works-005 │ ├── tests-test_clue.lua---gen_clues---registers()---works-006 │ ├── tests-test_clue.lua---gen_clues---registers()---works-007 │ ├── tests-test_clue.lua---gen_clues---registers()---works-008 │ ├── tests-test_clue.lua---gen_clues---registers()---works-009 │ ├── tests-test_clue.lua---gen_clues---square_brackets()---works │ ├── tests-test_clue.lua---gen_clues---square_brackets()---works-002 │ ├── tests-test_clue.lua---gen_clues---windows()---works │ ├── tests-test_clue.lua---gen_clues---windows()---works-002 │ ├── tests-test_clue.lua---gen_clues---z()---works │ ├── tests-test_clue.lua---gen_clues---z()---works-002 │ ├── tests-test_clue.lua---setup()---ensures-valid-triggers-on-`LspAttach`-event │ ├── tests-test_cmdline.lua---Autocomplete---is-not-triggered-when-wildmenu-is-visible │ ├── tests-test_cmdline.lua---Autocomplete---works │ ├── tests-test_cmdline.lua---Autocomplete---works-002 │ ├── tests-test_cmdline.lua---Autocomplete---works-003 │ ├── tests-test_cmdline.lua---Autocomplete---works-004 │ ├── tests-test_cmdline.lua---Autocomplete---works-005 │ ├── tests-test_cmdline.lua---Autocomplete---works-in-different-command-types │ ├── tests-test_cmdline.lua---Autocomplete---works-in-different-command-types-002 │ ├── tests-test_cmdline.lua---Autocomplete---works-in-different-command-types-003 │ ├── tests-test_cmdline.lua---Autocomplete---works-in-different-command-types-004 │ ├── tests-test_cmdline.lua---Autocomplete---works-in-edge-cases │ ├── tests-test_cmdline.lua---Autocomplete---works-in-edge-cases-002 │ ├── tests-test_cmdline.lua---Autocomplete---works-in-edge-cases-003 │ ├── tests-test_cmdline.lua---Autocomplete---works-with-different-completion-types │ ├── tests-test_cmdline.lua---Autocomplete---works-with-different-completion-types-002 │ ├── tests-test_cmdline.lua---Autocomplete---works-with-different-completion-types-003 │ ├── tests-test_cmdline.lua---Autopeek---correctly-computes-lines-to-show │ ├── tests-test_cmdline.lua---Autopeek---correctly-computes-lines-to-show-002 │ ├── tests-test_cmdline.lua---Autopeek---correctly-computes-lines-to-show-003 │ ├── tests-test_cmdline.lua---Autopeek---correctly-computes-lines-to-show-004 │ ├── tests-test_cmdline.lua---Autopeek---correctly-computes-lines-to-show-005 │ ├── tests-test_cmdline.lua---Autopeek---correctly-computes-lines-to-show-006 │ ├── tests-test_cmdline.lua---Autopeek---correctly-computes-lines-to-show-007 │ ├── tests-test_cmdline.lua---Autopeek---correctly-computes-lines-to-show-008 │ ├── tests-test_cmdline.lua---Autopeek---correctly-computes-lines-to-show-009 │ ├── tests-test_cmdline.lua---Autopeek---correctly-computes-lines-to-show-010 │ ├── tests-test_cmdline.lua---Autopeek---correctly-shows-window-without-border │ ├── tests-test_cmdline.lua---Autopeek---correctly-shows-window-without-border-002 │ ├── tests-test_cmdline.lua---Autopeek---correctly-shows-window-without-border-003 │ ├── tests-test_cmdline.lua---Autopeek---correctly-shows-window-without-border-004 │ ├── tests-test_cmdline.lua---Autopeek---correctly-shows-window-without-border-005 │ ├── tests-test_cmdline.lua---Autopeek---correctly-shows-window-without-border-006 │ ├── tests-test_cmdline.lua---Autopeek---fits-into-available-height │ ├── tests-test_cmdline.lua---Autopeek---fits-into-available-height-002 │ ├── tests-test_cmdline.lua---Autopeek---fits-into-available-height-003 │ ├── tests-test_cmdline.lua---Autopeek---fits-into-available-height-004 │ ├── tests-test_cmdline.lua---Autopeek---fits-into-available-height-005 │ ├── tests-test_cmdline.lua---Autopeek---fits-into-available-height-006 │ ├── tests-test_cmdline.lua---Autopeek---fits-into-available-height-007 │ ├── tests-test_cmdline.lua---Autopeek---fits-into-available-height-008 │ ├── tests-test_cmdline.lua---Autopeek---fits-into-available-height-009 │ ├── tests-test_cmdline.lua---Autopeek---fits-into-available-height-010 │ ├── tests-test_cmdline.lua---Autopeek---fits-into-available-height-011 │ ├── tests-test_cmdline.lua---Autopeek---fits-into-available-height-012 │ ├── tests-test_cmdline.lua---Autopeek---fits-into-available-height-013 │ ├── tests-test_cmdline.lua---Autopeek---fits-into-available-height-014 │ ├── tests-test_cmdline.lua---Autopeek---fits-into-available-height-015 │ ├── tests-test_cmdline.lua---Autopeek---fits-into-available-height-016 │ ├── tests-test_cmdline.lua---Autopeek---fits-into-available-height-017 │ ├── tests-test_cmdline.lua---Autopeek---fits-into-available-height-018 │ ├── tests-test_cmdline.lua---Autopeek---fits-into-available-height-019 │ ├── tests-test_cmdline.lua---Autopeek---fits-into-available-height-020 │ ├── tests-test_cmdline.lua---Autopeek---fits-into-available-height-021 │ ├── tests-test_cmdline.lua---Autopeek---fits-into-available-height-022 │ ├── tests-test_cmdline.lua---Autopeek---fits-into-available-height-023 │ ├── tests-test_cmdline.lua---Autopeek---fits-into-available-height-024 │ ├── tests-test_cmdline.lua---Autopeek---fits-into-available-height-025 │ ├── tests-test_cmdline.lua---Autopeek---fits-into-available-height-026 │ ├── tests-test_cmdline.lua---Autopeek---fits-into-available-height-027 │ ├── tests-test_cmdline.lua---Autopeek---fits-into-available-height-028 │ ├── tests-test_cmdline.lua---Autopeek---fits-into-available-height-029 │ ├── tests-test_cmdline.lua---Autopeek---fits-into-available-height-030 │ ├── tests-test_cmdline.lua---Autopeek---fits-into-available-height-031 │ ├── tests-test_cmdline.lua---Autopeek---fits-into-available-height-032 │ ├── tests-test_cmdline.lua---Autopeek---fits-into-available-height-033 │ ├── tests-test_cmdline.lua---Autopeek---fits-into-available-height-034 │ ├── tests-test_cmdline.lua---Autopeek---fits-into-available-height-035 │ ├── tests-test_cmdline.lua---Autopeek---fits-into-available-height-036 │ ├── tests-test_cmdline.lua---Autopeek---fits-into-available-height-037 │ ├── tests-test_cmdline.lua---Autopeek---fits-into-available-height-038 │ ├── tests-test_cmdline.lua---Autopeek---hides-visual-selection │ ├── tests-test_cmdline.lua---Autopeek---hides-visual-selection-002 │ ├── tests-test_cmdline.lua---Autopeek---ignores-'wrap' │ ├── tests-test_cmdline.lua---Autopeek---ignores-'wrap'-002 │ ├── tests-test_cmdline.lua---Autopeek---ignores-'wrap'-003 │ ├── tests-test_cmdline.lua---Autopeek---ignores-'wrap'-004 │ ├── tests-test_cmdline.lua---Autopeek---is-shown-below-pmenu-and--C-d--output │ ├── tests-test_cmdline.lua---Autopeek---persists-for-the-entirety-of-command-typing │ ├── tests-test_cmdline.lua---Autopeek---persists-for-the-entirety-of-command-typing-002 │ ├── tests-test_cmdline.lua---Autopeek---persists-for-the-entirety-of-command-typing-003 │ ├── tests-test_cmdline.lua---Autopeek---reacts-to-`VimResized` │ ├── tests-test_cmdline.lua---Autopeek---reacts-to-`VimResized`-002 │ ├── tests-test_cmdline.lua---Autopeek---reacts-to-`VimResized`-003 │ ├── tests-test_cmdline.lua---Autopeek---reacts-to-`VimResized`-004 │ ├── tests-test_cmdline.lua---Autopeek---reacts-to-command-line-height-change-during-typing │ ├── tests-test_cmdline.lua---Autopeek---reacts-to-command-line-height-change-during-typing-002 │ ├── tests-test_cmdline.lua---Autopeek---reacts-to-command-line-height-change-during-typing-003 │ ├── tests-test_cmdline.lua---Autopeek---respects-'winborder' │ ├── tests-test_cmdline.lua---Autopeek---respects-'winborder'-002 │ ├── tests-test_cmdline.lua---Autopeek---respects-'winborder'-003 │ ├── tests-test_cmdline.lua---Autopeek---respects-`config.autopeek.n_context` │ ├── tests-test_cmdline.lua---Autopeek---respects-`config.autopeek.n_context`-002 │ ├── tests-test_cmdline.lua---Autopeek---respects-`config.autopeek.n_context`-003 │ ├── tests-test_cmdline.lua---Autopeek---respects-`config.autopeek.n_context`-004 │ ├── tests-test_cmdline.lua---Autopeek---respects-`config.autopeek.n_context`-005 │ ├── tests-test_cmdline.lua---Autopeek---respects-`config.autopeek.n_context`-006 │ ├── tests-test_cmdline.lua---Autopeek---respects-`config.autopeek.n_context`-007 │ ├── tests-test_cmdline.lua---Autopeek---respects-`config.autopeek.window.config` │ ├── tests-test_cmdline.lua---Autopeek---respects-`config.autopeek.window.config`-002 │ ├── tests-test_cmdline.lua---Autopeek---respects-`config.autopeek.window.config`-003 │ ├── tests-test_cmdline.lua---Autopeek---respects-`config.autopeek.window.statuscolumn` │ ├── tests-test_cmdline.lua---Autopeek---respects-mappings │ ├── tests-test_cmdline.lua---Autopeek---updates-when-navigating-through-history │ ├── tests-test_cmdline.lua---Autopeek---updates-when-navigating-through-history-002 │ ├── tests-test_cmdline.lua---Autopeek---updates-when-navigating-through-history-003 │ ├── tests-test_cmdline.lua---Autopeek---updates-when-navigating-through-history-004 │ ├── tests-test_cmdline.lua---Autopeek---works │ ├── tests-test_cmdline.lua---Autopeek---works-002 │ ├── tests-test_cmdline.lua---Autopeek---works-003 │ ├── tests-test_cmdline.lua---Autopeek---works-004 │ ├── tests-test_cmdline.lua---Autopeek---works-005 │ ├── tests-test_cmdline.lua---Autopeek---works-006 │ ├── tests-test_cmdline.lua---Autopeek---works-007 │ ├── tests-test_cmdline.lua---Autopeek---works-008 │ ├── tests-test_cmdline.lua---Autopeek---works-009 │ ├── tests-test_cmdline.lua---Autopeek---works-if-range-is-present-immediately │ ├── tests-test_cmdline.lua---Autopeek---works-when-regular-command-line-parsing-fails │ ├── tests-test_cmdline.lua---Autopeek---works-when-regular-command-line-parsing-fails-002 │ ├── tests-test_cmdline.lua---Autopeek---works-when-regular-command-line-parsing-fails-003 │ ├── tests-test_cmdline.lua---Autopeek---works-when-regular-command-line-parsing-fails-004 │ ├── tests-test_cmdline.lua---Autopeek---works-when-regular-command-line-parsing-fails-005 │ ├── tests-test_cmdline.lua---Autopeek---works-when-regular-command-line-parsing-fails-006 │ ├── tests-test_cmdline.lua---Autopeek---works-when-regular-command-line-parsing-fails-007 │ ├── tests-test_cmdline.lua---Autopeek---works-when-regular-command-line-parsing-fails-008 │ ├── tests-test_cmdline.lua---Autopeek---works-when-regular-command-line-parsing-fails-009 │ ├── tests-test_cmdline.lua---Autopeek---works-when-using-command-line-expression-register │ ├── tests-test_cmdline.lua---Autopeek---works-when-using-command-line-expression-register-002 │ ├── tests-test_cmdline.lua---Autopeek---works-with-'inccommand' │ ├── tests-test_cmdline.lua---Autopeek---works-with-'inccommand'-002 │ ├── tests-test_cmdline.lua---Autopeek---works-with-'inccommand'-003 │ ├── tests-test_cmdline.lua---Autopeek---works-with-'inccommand'-004 │ ├── tests-test_cmdline.lua---Autopeek---works-with-'inccommand'-005 │ ├── tests-test_cmdline.lua---Autopeek---works-with-'inccommand'-006 │ ├── tests-test_cmdline.lua---Autopeek---works-with-different-'cmdheight' │ ├── tests-test_cmdline.lua---Autopeek---works-with-different-'cmdheight'-002 │ ├── tests-test_cmdline.lua---Autopeek---works-with-every-kind-of-line-range │ ├── tests-test_cmdline.lua---Autopeek---works-with-every-kind-of-line-range-002 │ ├── tests-test_cmdline.lua---Autopeek---works-with-every-kind-of-line-range-003 │ ├── tests-test_cmdline.lua---Autopeek---works-with-every-kind-of-line-range-004 │ ├── tests-test_cmdline.lua---Autopeek---works-with-every-kind-of-line-range-005 │ ├── tests-test_cmdline.lua---Autopeek---works-with-every-kind-of-line-range-006 │ ├── tests-test_cmdline.lua---Autopeek---works-with-every-kind-of-line-range-007 │ ├── tests-test_cmdline.lua---Autopeek---works-with-every-kind-of-line-range-008 │ ├── tests-test_cmdline.lua---Autopeek---works-with-every-kind-of-line-range-009 │ ├── tests-test_cmdline.lua---Autopeek---works-with-every-kind-of-line-range-010 │ ├── tests-test_cmdline.lua---Autopeek---works-with-every-kind-of-line-range-011 │ ├── tests-test_cmdline.lua---Autopeek---works-with-every-kind-of-line-range-012 │ ├── tests-test_cmdline.lua---Autopeek---works-with-every-kind-of-line-range-013 │ ├── tests-test_cmdline.lua---Autopeek---works-with-inverted-range │ ├── tests-test_cmdline.lua---Autopeek---works-with-inverted-range-002 │ ├── tests-test_cmdline.lua---Autopeek---works-with-inverted-range-003 │ ├── tests-test_cmdline.lua---Autopeek---works-with-inverted-range-004 │ ├── tests-test_cmdline.lua---Autopeek---works-with-inverted-range-005 │ ├── tests-test_cmdline.lua---Autopeek---works-with-inverted-range-006 │ ├── tests-test_cmdline.lua---Autopeek---works-with-inverted-range-007 │ ├── tests-test_cmdline.lua---Autopeek---works-with-inverted-range-008 │ ├── tests-test_cmdline.lua---Autopeek---works-with-inverted-range-009 │ ├── tests-test_cmdline.lua---Autopeek---works-with-virtual-lines │ ├── tests-test_cmdline.lua---Autopeek---works-with-virtual-lines-002 │ ├── tests-test_cmdline.lua---Autopeek---works-with-virtual-lines-003 │ ├── tests-test_cmdline.lua---Autopeek---works-with-virtual-lines-004 │ ├── tests-test_cmdline.lua---Autopeek---works-with-virtual-lines-005 │ ├── tests-test_cmdline.lua---Autopeek---works-with-virtual-lines-006 │ ├── tests-test_cmdline.lua---default_autopeek_statuscolumn()---respects-`opts` │ ├── tests-test_cmdline.lua---default_autopeek_statuscolumn()---respects-`opts`-002 │ ├── tests-test_cmdline.lua---default_autopeek_statuscolumn()---respects-`opts`-003 │ ├── tests-test_cmdline.lua---default_autopeek_statuscolumn()---respects-`opts`-004 │ ├── tests-test_cmdline.lua---default_autopeek_statuscolumn()---works │ ├── tests-test_cmdline.lua---default_autopeek_statuscolumn()---works-002 │ ├── tests-test_cmdline.lua---default_autopeek_statuscolumn()---works-003 │ ├── tests-test_cmdline.lua---default_autopeek_statuscolumn()---works-004 │ ├── tests-test_cmdline.lua---default_autopeek_statuscolumn()---works-005 │ ├── tests-test_cmdline.lua---default_autopeek_statuscolumn()---works-006 │ ├── tests-test_cmdline.lua---default_autopeek_statuscolumn()---works-with-wrapped-and-virtual-lines │ ├── tests-test_colors.lua---interactive()---works │ ├── tests-test_colors.lua---interactive()---works-002 │ ├── tests-test_completion.lua---Autocompletion---forces-new-LSP-completion-at-LSP-trigger---test-+-args-{-'completefunc'-} │ ├── tests-test_completion.lua---Autocompletion---forces-new-LSP-completion-at-LSP-trigger---test-+-args-{-'completefunc'-}-002 │ ├── tests-test_completion.lua---Autocompletion---forces-new-LSP-completion-at-LSP-trigger---test-+-args-{-'omnifunc'-} │ ├── tests-test_completion.lua---Autocompletion---forces-new-LSP-completion-at-LSP-trigger---test-+-args-{-'omnifunc'-}-002 │ ├── tests-test_completion.lua---Autocompletion---forces-new-LSP-completion-for-`isIncomplete`-even-if-canceled │ ├── tests-test_completion.lua---Autocompletion---forces-new-LSP-completion-in-case-of-`isIncomplete` │ ├── tests-test_completion.lua---Autocompletion---forces-new-LSP-completion-in-case-of-`isIncomplete`-002 │ ├── tests-test_completion.lua---Autocompletion---forces-new-LSP-completion-in-case-of-`isIncomplete`-003 │ ├── tests-test_completion.lua---Autocompletion---respects-string-`config.fallback_action` │ ├── tests-test_completion.lua---Autocompletion---respects-string-`config.fallback_action`-002 │ ├── tests-test_completion.lua---Autocompletion---works-with-LSP-client │ ├── tests-test_completion.lua---Autocompletion---works-with-`-BS-` │ ├── tests-test_completion.lua---Autocompletion---works-with-`-BS-`-002 │ ├── tests-test_completion.lua---Autocompletion---works-with-`-BS-`-003 │ ├── tests-test_completion.lua---Autocompletion---works-without-LSP-clients │ ├── tests-test_completion.lua---Information-window---accounts-for-border-when-picking-side │ ├── tests-test_completion.lua---Information-window---adjusts-for-top-bottom-code-block-delimiters │ ├── tests-test_completion.lua---Information-window---adjusts-for-top-bottom-code-block-delimiters-002 │ ├── tests-test_completion.lua---Information-window---adjusts-title │ ├── tests-test_completion.lua---Information-window---adjusts-title-002 │ ├── tests-test_completion.lua---Information-window---adjusts-window-width │ ├── tests-test_completion.lua---Information-window---can-be-adjusted-in-event │ ├── tests-test_completion.lua---Information-window---has-minimal-dimensions-for-small-text │ ├── tests-test_completion.lua---Information-window---ignores-data-from-first-response-if-server-can-resolve-completion-item │ ├── tests-test_completion.lua---Information-window---respects-'pumborder'-option │ ├── tests-test_completion.lua---Information-window---respects-'pumborder'-option-002 │ ├── tests-test_completion.lua---Information-window---respects-'pumborder'-option-003 │ ├── tests-test_completion.lua---Information-window---respects-'pumborder'-option-004 │ ├── tests-test_completion.lua---Information-window---respects-'pumborder'-option-005 │ ├── tests-test_completion.lua---Information-window---respects-'pumborder'-option-006 │ ├── tests-test_completion.lua---Information-window---respects-'pumborder'-option-007 │ ├── tests-test_completion.lua---Information-window---respects-'pumborder'-option-008 │ ├── tests-test_completion.lua---Information-window---respects-'pumborder'-option-009 │ ├── tests-test_completion.lua---Information-window---respects-`config.window.info` │ ├── tests-test_completion.lua---Information-window---respects-`config.window.info`-002 │ ├── tests-test_completion.lua---Information-window---stylizes-markdown-with-concealed-characters │ ├── tests-test_completion.lua---Information-window---uses-`detail`-to-construct-content │ ├── tests-test_completion.lua---Information-window---uses-`detail`-to-construct-content-002 │ ├── tests-test_completion.lua---Information-window---uses-`info`-field-from-not-LSP-source │ ├── tests-test_completion.lua---Information-window---works │ ├── tests-test_completion.lua---Information-window---works-without-attached-LSP-server │ ├── tests-test_completion.lua---Information-window---works-without-attached-LSP-server-002 │ ├── tests-test_completion.lua---Manual-completion---respects-`abbr_hlgroup`-as-item-field │ ├── tests-test_completion.lua---Manual-completion---respects-`filterText`-during-built-in-filtering │ ├── tests-test_completion.lua---Manual-completion---respects-`filterText`-during-built-in-filtering-002 │ ├── tests-test_completion.lua---Manual-completion---respects-`kind_hlgroup`-as-item-field │ ├── tests-test_completion.lua---Manual-completion---respects-`labelDetails`-from-LSP-response │ ├── tests-test_completion.lua---Manual-completion---uses-`vim.lsp.protocol.CompletionItemKind`-in-LSP-step │ ├── tests-test_completion.lua---Scroll---can-be-done-in-both-windows │ ├── tests-test_completion.lua---Scroll---can-be-done-in-both-windows-002 │ ├── tests-test_completion.lua---Scroll---can-be-done-in-both-windows-003 │ ├── tests-test_completion.lua---Scroll---can-be-done-in-both-windows-004 │ ├── tests-test_completion.lua---Scroll---can-be-done-in-info-window │ ├── tests-test_completion.lua---Scroll---can-be-done-in-info-window-002 │ ├── tests-test_completion.lua---Scroll---can-be-done-in-info-window-003 │ ├── tests-test_completion.lua---Scroll---can-be-done-in-info-window-004 │ ├── tests-test_completion.lua---Scroll---can-be-done-in-info-window-005 │ ├── tests-test_completion.lua---Scroll---can-be-done-in-info-window-006 │ ├── tests-test_completion.lua---Scroll---can-be-done-in-info-window-007 │ ├── tests-test_completion.lua---Scroll---can-be-done-in-signature-window │ ├── tests-test_completion.lua---Scroll---can-be-done-in-signature-window-002 │ ├── tests-test_completion.lua---Scroll---can-be-done-in-signature-window-003 │ ├── tests-test_completion.lua---Scroll---can-be-done-in-signature-window-004 │ ├── tests-test_completion.lua---Scroll---can-be-done-in-signature-window-005 │ ├── tests-test_completion.lua---Scroll---respects-`config.mappings` │ ├── tests-test_completion.lua---Scroll---respects-`config.mappings`-002 │ ├── tests-test_completion.lua---Scroll---respects-`config.mappings`-003 │ ├── tests-test_completion.lua---Signature-help---accounts-for-border-when-picking-side │ ├── tests-test_completion.lua---Signature-help---adjusts-title │ ├── tests-test_completion.lua---Signature-help---adjusts-title-002 │ ├── tests-test_completion.lua---Signature-help---adjusts-window-height │ ├── tests-test_completion.lua---Signature-help---can-be-adjusted-in-event │ ├── tests-test_completion.lua---Signature-help---handles-multiline-text │ ├── tests-test_completion.lua---Signature-help---has-minimal-dimensions-for-small-text │ ├── tests-test_completion.lua---Signature-help---respects-`config.window.signature` │ ├── tests-test_completion.lua---Signature-help---respects-`config.window.signature`-002 │ ├── tests-test_completion.lua---Signature-help---stylizes-markdown-with-concealed-characters │ ├── tests-test_completion.lua---Signature-help---updates-highlighting-of-active-parameter │ ├── tests-test_completion.lua---Signature-help---updates-highlighting-of-active-parameter-002 │ ├── tests-test_completion.lua---Signature-help---updates-highlighting-of-active-parameter-003 │ ├── tests-test_completion.lua---Signature-help---updates-highlighting-of-active-parameter-004 │ ├── tests-test_completion.lua---Signature-help---updates-highlighting-of-active-parameter-005 │ ├── tests-test_completion.lua---Signature-help---updates-highlighting-of-active-parameter-006 │ ├── tests-test_completion.lua---Signature-help---updates-without-delay-with-different-window │ ├── tests-test_completion.lua---Signature-help---updates-without-delay-with-different-window-002 │ ├── tests-test_completion.lua---Signature-help---works │ ├── tests-test_completion.lua---Snippets---LSP-server-from-'mini.snippets'---works │ ├── tests-test_completion.lua---Snippets---LSP-server-from-'mini.snippets'---works-with-in-server-matching │ ├── tests-test_completion.lua---Snippets---are-not-inserted-if-have-no-tabstops-or-variables │ ├── tests-test_completion.lua---Snippets---properly-show-special-symbol-in-popup │ ├── tests-test_completion.lua---Snippets---respect-'mini.snippets'-config │ ├── tests-test_completion.lua---Snippets---show-full-snippet-text-as-info │ ├── tests-test_completion.lua---Snippets---show-full-snippet-text-as-info-002 │ ├── tests-test_completion.lua---Snippets---work │ ├── tests-test_cursorword.lua---Highlighting---can-stop │ ├── tests-test_cursorword.lua---Highlighting---respects-MiniCursorwordCurrent-highlight-group │ ├── tests-test_cursorword.lua---Highlighting---works │ ├── tests-test_cursorword.lua---Highlighting---works-on-multibyte-character │ ├── tests-test_cursorword.lua---Highlighting---works-on-multibyte-character-002 │ ├── tests-test_cursorword.lua---Highlighting---works-with-multiple-windows │ ├── tests-test_deps.lua---Commands----DepsAdd-works │ ├── tests-test_deps.lua---Commands----DepsShowLog-works │ ├── tests-test_deps.lua---Commands----DepsUpdate-works │ ├── tests-test_deps.lua---Commands----DepsUpdateOffline-works │ ├── tests-test_deps.lua---clean()---works │ ├── tests-test_deps.lua---clean()---works-002 │ ├── tests-test_deps.lua---update()---can-fold-in-confirm-buffer │ ├── tests-test_deps.lua---update()---can-highlight-breaking-changes │ ├── tests-test_deps.lua---update()---can-work-with-non-default-branches │ ├── tests-test_deps.lua---update()---shows-empty-monitor-log │ ├── tests-test_deps.lua---update()---works │ ├── tests-test_diff.lua---Diff---`MiniDiffUpdated`-event-can-be-used-to-override-`minidiff_summary_string`-variable │ ├── tests-test_diff.lua---Diff---redraws-statusline-when-diff-is-updated │ ├── tests-test_diff.lua---Diff---redraws-statusline-when-diff-is-updated-002 │ ├── tests-test_diff.lua---Overlay---always-highlights-whole-lines │ ├── tests-test_diff.lua---Overlay---scrolls-along-with-buffer-lines │ ├── tests-test_diff.lua---Overlay---scrolls-along-with-buffer-lines-002 │ ├── tests-test_diff.lua---Overlay---word-diff---has-non-zero-interhunk-context │ ├── tests-test_diff.lua---Overlay---word-diff---works │ ├── tests-test_diff.lua---Overlay---word-diff---works-with-BOM-bytes │ ├── tests-test_diff.lua---Overlay---word-diff---works-with-multibyte-characters │ ├── tests-test_diff.lua---Overlay---word-diff---works-with-multibyte-characters-002 │ ├── tests-test_diff.lua---Overlay---word-diff---works-with-multibyte-characters-003 │ ├── tests-test_diff.lua---Overlay---word-diff---works-with-multibyte-characters-004 │ ├── tests-test_diff.lua---Overlay---word-diff---works-with-multibyte-characters-005 │ ├── tests-test_diff.lua---Overlay---word-diff---works-with-multibyte-characters-006 │ ├── tests-test_diff.lua---Overlay---word-diff---works-with-multibyte-characters-007 │ ├── tests-test_diff.lua---Overlay---word-diff---works-with-multibyte-characters-008 │ ├── tests-test_diff.lua---Overlay---word-diff---works-with-multibyte-characters-009 │ ├── tests-test_diff.lua---Overlay---word-diff---works-with-multibyte-characters-010 │ ├── tests-test_diff.lua---Overlay---word-diff---works-with-one-of-lines-being-empty │ ├── tests-test_diff.lua---Overlay---word-diff---works-with-one-of-lines-being-empty-002 │ ├── tests-test_diff.lua---Overlay---works │ ├── tests-test_diff.lua---Overlay---works-002 │ ├── tests-test_diff.lua---Overlay---works-003 │ ├── tests-test_diff.lua---Overlay---works-at-edge-lines │ ├── tests-test_diff.lua---Overlay---works-at-edge-lines-002 │ ├── tests-test_diff.lua---Overlay---works-at-edge-lines-003 │ ├── tests-test_diff.lua---Overlay---works-when-'change'-overlaps-with-'delete' │ ├── tests-test_diff.lua---Overlay---works-with-'add'-hunks │ ├── tests-test_diff.lua---Overlay---works-with-'change'-hunks │ ├── tests-test_diff.lua---Overlay---works-with-'change'-hunks-002 │ ├── tests-test_diff.lua---Overlay---works-with-'delete'-hunks │ ├── tests-test_diff.lua---Visualization---can-be-visually-disabled │ ├── tests-test_diff.lua---Visualization---does-not-appear-if-there-is-no-gutter │ ├── tests-test_diff.lua---Visualization---forces-redraw-when-it-is-needed │ ├── tests-test_diff.lua---Visualization---forces-redraw-when-it-is-needed-002 │ ├── tests-test_diff.lua---Visualization---reacts-to-hunk-lines-delete-move │ ├── tests-test_diff.lua---Visualization---reacts-to-hunk-lines-delete-move-002 │ ├── tests-test_diff.lua---Visualization---respects-`view.signs` │ ├── tests-test_diff.lua---Visualization---respects-`view.style` │ ├── tests-test_diff.lua---Visualization---respects-`view.style`-002 │ ├── tests-test_diff.lua---Visualization---shows-signcolumn-even-if-hunks-are-outside-of-view │ ├── tests-test_diff.lua---Visualization---shows-signcolumn-even-if-hunks-are-outside-of-view-002 │ ├── tests-test_diff.lua---Visualization---works │ ├── tests-test_diff.lua---Visualization---works-with-'add'-hunks │ ├── tests-test_diff.lua---Visualization---works-with-'add'-hunks-002 │ ├── tests-test_diff.lua---Visualization---works-with-'change'-hunks │ ├── tests-test_diff.lua---Visualization---works-with-'change'-hunks-002 │ ├── tests-test_diff.lua---Visualization---works-with-'delete'-hunks │ ├── tests-test_diff.lua---Visualization---works-with-'delete'-hunks-002 │ ├── tests-test_diff.lua---Visualization---works-with-'delete'-hunks-003 │ ├── tests-test_diff.lua---disable()---works │ ├── tests-test_diff.lua---set_ref_text()---immediately-updates-diff-data-and-visualization │ ├── tests-test_diff.lua---set_ref_text()---removing-reference-text-removes-visualization │ ├── tests-test_diff.lua---set_ref_text()---removing-reference-text-removes-visualization-002 │ ├── tests-test_diff.lua---toggle_overlay()---works │ ├── tests-test_diff.lua---toggle_overlay()---works-002 │ ├── tests-test_diff.lua---toggle_overlay()---works-003 │ ├── tests-test_diff.lua---toggle_overlay()---works-004 │ ├── tests-test_diff.lua---toggle_overlay()---works-005 │ ├── tests-test_extra.lua---pickers---buf_lines()---can-not-show-icons │ ├── tests-test_extra.lua---pickers---buf_lines()---respects-`local_opts.scope` │ ├── tests-test_extra.lua---pickers---buf_lines()---works │ ├── tests-test_extra.lua---pickers---colorschemes()---respects-`local_opts.preview_hl_groups` │ ├── tests-test_extra.lua---pickers---colorschemes()---works │ ├── tests-test_extra.lua---pickers---colorschemes()---works-002 │ ├── tests-test_extra.lua---pickers---colorschemes()---works-with-preview │ ├── tests-test_extra.lua---pickers---colorschemes()---works-with-preview-002 │ ├── tests-test_extra.lua---pickers---colorschemes()---works-with-preview-003 │ ├── tests-test_extra.lua---pickers---commands()---respects-user-commands │ ├── tests-test_extra.lua---pickers---commands()---respects-user-commands-002 │ ├── tests-test_extra.lua---pickers---commands()---works │ ├── tests-test_extra.lua---pickers---commands()---works-002 │ ├── tests-test_extra.lua---pickers---diagnostic()---works │ ├── tests-test_extra.lua---pickers---diagnostic()---works-002 │ ├── tests-test_extra.lua---pickers---explorer()---can-be-resumed │ ├── tests-test_extra.lua---pickers---explorer()---can-be-resumed-002 │ ├── tests-test_extra.lua---pickers---explorer()---can-not-show-icons │ ├── tests-test_extra.lua---pickers---explorer()---can-not-show-icons-002 │ ├── tests-test_extra.lua---pickers---explorer()---respects-`local_opts.filter` │ ├── tests-test_extra.lua---pickers---explorer()---respects-`local_opts.filter`-002 │ ├── tests-test_extra.lua---pickers---explorer()---respects-`local_opts.sort` │ ├── tests-test_extra.lua---pickers---explorer()---respects-`local_opts.sort`-002 │ ├── tests-test_extra.lua---pickers---explorer()---works │ ├── tests-test_extra.lua---pickers---explorer()---works-002 │ ├── tests-test_extra.lua---pickers---explorer()---works-003 │ ├── tests-test_extra.lua---pickers---explorer()---works-004 │ ├── tests-test_extra.lua---pickers---explorer()---works-005 │ ├── tests-test_extra.lua---pickers---explorer()---works-006 │ ├── tests-test_extra.lua---pickers---git_branches()---works │ ├── tests-test_extra.lua---pickers---git_branches()---works-002 │ ├── tests-test_extra.lua---pickers---git_commits()---works │ ├── tests-test_extra.lua---pickers---git_commits()---works-002 │ ├── tests-test_extra.lua---pickers---git_files()---can-not-show-icons │ ├── tests-test_extra.lua---pickers---git_files()---works │ ├── tests-test_extra.lua---pickers---git_files()---works-002 │ ├── tests-test_extra.lua---pickers---git_hunks()---respects-`local_opts.n_context`---test-+-args-{-0-} │ ├── tests-test_extra.lua---pickers---git_hunks()---respects-`local_opts.n_context`---test-+-args-{-0-}-002 │ ├── tests-test_extra.lua---pickers---git_hunks()---respects-`local_opts.n_context`---test-+-args-{-0-}-003 │ ├── tests-test_extra.lua---pickers---git_hunks()---respects-`local_opts.n_context`---test-+-args-{-20-} │ ├── tests-test_extra.lua---pickers---git_hunks()---respects-`local_opts.n_context`---test-+-args-{-20-}-002 │ ├── tests-test_extra.lua---pickers---git_hunks()---respects-`local_opts.n_context`---test-+-args-{-20-}-003 │ ├── tests-test_extra.lua---pickers---git_hunks()---works │ ├── tests-test_extra.lua---pickers---git_hunks()---works-002 │ ├── tests-test_extra.lua---pickers---git_hunks()---works-003 │ ├── tests-test_extra.lua---pickers---git_hunks()---works-004 │ ├── tests-test_extra.lua---pickers---git_hunks()---works-005 │ ├── tests-test_extra.lua---pickers---git_hunks()---works-006 │ ├── tests-test_extra.lua---pickers---hipatterns()---respects-`local_opts.highlighters` │ ├── tests-test_extra.lua---pickers---hipatterns()---respects-`local_opts.scope` │ ├── tests-test_extra.lua---pickers---hipatterns()---works │ ├── tests-test_extra.lua---pickers---hipatterns()---works-002 │ ├── tests-test_extra.lua---pickers---history()---works │ ├── tests-test_extra.lua---pickers---history()---works-002 │ ├── tests-test_extra.lua---pickers---hl_groups()---respects-non-default-linked-highlight-groups │ ├── tests-test_extra.lua---pickers---hl_groups()---works │ ├── tests-test_extra.lua---pickers---hl_groups()---works-002 │ ├── tests-test_extra.lua---pickers---keymaps()---shows-source-of-Lua-callback-in-preview │ ├── tests-test_extra.lua---pickers---keymaps()---shows-source-of-Lua-callback-in-preview-002 │ ├── tests-test_extra.lua---pickers---keymaps()---shows-source-of-Lua-callback-in-preview-003 │ ├── tests-test_extra.lua---pickers---keymaps()---works │ ├── tests-test_extra.lua---pickers---keymaps()---works-002 │ ├── tests-test_extra.lua---pickers---list()---works-for-`change` │ ├── tests-test_extra.lua---pickers---list()---works-for-`change`-002 │ ├── tests-test_extra.lua---pickers---list()---works-for-`jump` │ ├── tests-test_extra.lua---pickers---list()---works-for-`jump`-002 │ ├── tests-test_extra.lua---pickers---list()---works-for-`location` │ ├── tests-test_extra.lua---pickers---list()---works-for-`location`-002 │ ├── tests-test_extra.lua---pickers---list()---works-for-`location`-003 │ ├── tests-test_extra.lua---pickers---list()---works-for-`location`-004 │ ├── tests-test_extra.lua---pickers---list()---works-for-`quickfix` │ ├── tests-test_extra.lua---pickers---list()---works-for-`quickfix`-002 │ ├── tests-test_extra.lua---pickers---list()---works-for-`quickfix`-003 │ ├── tests-test_extra.lua---pickers---list()---works-for-`quickfix`-004 │ ├── tests-test_extra.lua---pickers---lsp()---works-for-`declaration` │ ├── tests-test_extra.lua---pickers---lsp()---works-for-`declaration`-002 │ ├── tests-test_extra.lua---pickers---lsp()---works-for-`definition` │ ├── tests-test_extra.lua---pickers---lsp()---works-for-`definition`-002 │ ├── tests-test_extra.lua---pickers---lsp()---works-for-`document_symbol` │ ├── tests-test_extra.lua---pickers---lsp()---works-for-`document_symbol`-002 │ ├── tests-test_extra.lua---pickers---lsp()---works-for-`document_symbol`-after-`MiniIcons.tweak_lsp_kind()` │ ├── tests-test_extra.lua---pickers---lsp()---works-for-`document_symbol`-after-`MiniIcons.tweak_lsp_kind()`-002 │ ├── tests-test_extra.lua---pickers---lsp()---works-for-`document_symbol`-after-`MiniIcons.tweak_lsp_kind()`-003 │ ├── tests-test_extra.lua---pickers---lsp()---works-for-`document_symbol`-with-'mini.icons'-set-up │ ├── tests-test_extra.lua---pickers---lsp()---works-for-`document_symbol`-with-'mini.icons'-set-up-002 │ ├── tests-test_extra.lua---pickers---lsp()---works-for-`implementation` │ ├── tests-test_extra.lua---pickers---lsp()---works-for-`implementation`-002 │ ├── tests-test_extra.lua---pickers---lsp()---works-for-`references` │ ├── tests-test_extra.lua---pickers---lsp()---works-for-`references`-002 │ ├── tests-test_extra.lua---pickers---lsp()---works-for-`type_definition` │ ├── tests-test_extra.lua---pickers---lsp()---works-for-`type_definition`-002 │ ├── tests-test_extra.lua---pickers---lsp()---works-for-`workspace_symbol` │ ├── tests-test_extra.lua---pickers---lsp()---works-for-`workspace_symbol`-002 │ ├── tests-test_extra.lua---pickers---lsp()---works-for-`workspace_symbol`-after-`MiniIcons.tweak_lsp_kind()` │ ├── tests-test_extra.lua---pickers---lsp()---works-for-`workspace_symbol`-after-`MiniIcons.tweak_lsp_kind()`-002 │ ├── tests-test_extra.lua---pickers---lsp()---works-for-`workspace_symbol`-after-`MiniIcons.tweak_lsp_kind()`-003 │ ├── tests-test_extra.lua---pickers---lsp()---works-for-`workspace_symbol`-with-'mini.icons'-set-up │ ├── tests-test_extra.lua---pickers---lsp()---works-for-`workspace_symbol`-with-'mini.icons'-set-up-002 │ ├── tests-test_extra.lua---pickers---manpages()---can-choose-in-split │ ├── tests-test_extra.lua---pickers---manpages()---works │ ├── tests-test_extra.lua---pickers---manpages()---works-002 │ ├── tests-test_extra.lua---pickers---manpages()---works-003 │ ├── tests-test_extra.lua---pickers---marks()---respects-`local_opts.scope` │ ├── tests-test_extra.lua---pickers---marks()---respects-`local_opts.scope`-002 │ ├── tests-test_extra.lua---pickers---marks()---respects-`local_opts.scope`-003 │ ├── tests-test_extra.lua---pickers---marks()---works │ ├── tests-test_extra.lua---pickers---marks()---works-002 │ ├── tests-test_extra.lua---pickers---marks()---works-003 │ ├── tests-test_extra.lua---pickers---marks()---works-004 │ ├── tests-test_extra.lua---pickers---oldfiles()---can-not-show-icons │ ├── tests-test_extra.lua---pickers---oldfiles()---works │ ├── tests-test_extra.lua---pickers---options()---correctly-previews-deprecated-options │ ├── tests-test_extra.lua---pickers---options()---respects-set-options │ ├── tests-test_extra.lua---pickers---options()---respects-set-options-002 │ ├── tests-test_extra.lua---pickers---options()---respects-set-options-003 │ ├── tests-test_extra.lua---pickers---options()---works │ ├── tests-test_extra.lua---pickers---options()---works-002 │ ├── tests-test_extra.lua---pickers---registers()---works │ ├── tests-test_extra.lua---pickers---registers()---works-002 │ ├── tests-test_extra.lua---pickers---spellsuggest()---works │ ├── tests-test_extra.lua---pickers---spellsuggest()---works-002 │ ├── tests-test_extra.lua---pickers---treesitter()---works │ ├── tests-test_extra.lua---pickers---treesitter()---works-002 │ ├── tests-test_extra.lua---pickers---treesitter()---works-003 │ ├── tests-test_extra.lua---pickers---visit_labels()---can-not-show-icons-after-choosing │ ├── tests-test_extra.lua---pickers---visit_labels()---respects-`local_opts.sort` │ ├── tests-test_extra.lua---pickers---visit_labels()---works │ ├── tests-test_extra.lua---pickers---visit_labels()---works-002 │ ├── tests-test_extra.lua---pickers---visit_labels()---works-003 │ ├── tests-test_extra.lua---pickers---visit_paths()---can-not-show-icons │ ├── tests-test_extra.lua---pickers---visit_paths()---works │ ├── tests-test_extra.lua---pickers---visit_paths()---works-002 │ ├── tests-test_files.lua---Cursors---handle-`content.prefix`-returning-different-lengths │ ├── tests-test_files.lua---Cursors---shows-whole-line-after-horizontal-scroll │ ├── tests-test_files.lua---Cursors---shows-whole-line-after-horizontal-scroll-002 │ ├── tests-test_files.lua---Default-explorer---works-in-`-edit-.` │ ├── tests-test_files.lua---Default-explorer---works-in-`-tabfind-.` │ ├── tests-test_files.lua---Default-explorer---works-in-`-tabfind-.`-002 │ ├── tests-test_files.lua---Default-explorer---works-in-`-vsplit-.` │ ├── tests-test_files.lua---Default-explorer---works-in-`-vsplit-.`-002 │ ├── tests-test_files.lua---Default-explorer---works-on-startup │ ├── tests-test_files.lua---Events---`MiniFilesWindowOpen`-can-be-used-to-tweak-window-config │ ├── tests-test_files.lua---Events---`MiniFilesWindowOpen`-can-be-used-to-tweak-window-config-002 │ ├── tests-test_files.lua---Events---`MiniFilesWindowOpen`-can-be-used-to-tweak-window-config-003 │ ├── tests-test_files.lua---Events---`MiniFilesWindowUpdate`-can-customize-internally-set-window-config-parts │ ├── tests-test_files.lua---Events---`MiniFilesWindowUpdate`-can-customize-internally-set-window-config-parts-002 │ ├── tests-test_files.lua---Events---`MiniFilesWindowUpdate`-can-customize-internally-set-window-config-parts-003 │ ├── tests-test_files.lua---Events---`MiniFilesWindowUpdate`-can-customize-internally-set-window-config-parts-004 │ ├── tests-test_files.lua---Events---`MiniFilesWindowUpdate`-can-customize-internally-set-window-config-parts-005 │ ├── tests-test_files.lua---File-manipulation---can-be-not-confirmed │ ├── tests-test_files.lua---File-manipulation---can-be-not-confirmed-002 │ ├── tests-test_files.lua---File-manipulation---can-be-not-confirmed-with-preview │ ├── tests-test_files.lua---File-manipulation---can-be-not-confirmed-with-preview-002 │ ├── tests-test_files.lua---File-manipulation---can-convert-file-into-directory │ ├── tests-test_files.lua---File-manipulation---can-convert-file-into-directory-002 │ ├── tests-test_files.lua---File-manipulation---can-copy-directory │ ├── tests-test_files.lua---File-manipulation---can-copy-directory-002 │ ├── tests-test_files.lua---File-manipulation---can-copy-directory-inside-itself │ ├── tests-test_files.lua---File-manipulation---can-copy-directory-inside-itself-002 │ ├── tests-test_files.lua---File-manipulation---can-copy-directory-inside-new-directory │ ├── tests-test_files.lua---File-manipulation---can-copy-directory-inside-new-directory-002 │ ├── tests-test_files.lua---File-manipulation---can-copy-file │ ├── tests-test_files.lua---File-manipulation---can-copy-file-002 │ ├── tests-test_files.lua---File-manipulation---can-copy-file-inside-new-directory │ ├── tests-test_files.lua---File-manipulation---can-copy-file-inside-new-directory-002 │ ├── tests-test_files.lua---File-manipulation---can-create │ ├── tests-test_files.lua---File-manipulation---can-create-002 │ ├── tests-test_files.lua---File-manipulation---can-delete │ ├── tests-test_files.lua---File-manipulation---can-delete-002 │ ├── tests-test_files.lua---File-manipulation---can-move-directory │ ├── tests-test_files.lua---File-manipulation---can-move-directory-002 │ ├── tests-test_files.lua---File-manipulation---can-move-file │ ├── tests-test_files.lua---File-manipulation---can-move-file-002 │ ├── tests-test_files.lua---File-manipulation---can-move-inside-new-directory │ ├── tests-test_files.lua---File-manipulation---can-move-inside-new-directory-002 │ ├── tests-test_files.lua---File-manipulation---can-move-while-changing-basename │ ├── tests-test_files.lua---File-manipulation---can-move-while-changing-basename-002 │ ├── tests-test_files.lua---File-manipulation---can-rename │ ├── tests-test_files.lua---File-manipulation---can-rename-002 │ ├── tests-test_files.lua---File-manipulation---copy-does-not-override-existing-entry │ ├── tests-test_files.lua---File-manipulation---copy-does-not-override-existing-entry-002 │ ├── tests-test_files.lua---File-manipulation---copy-does-not-override-existing-entry-003 │ ├── tests-test_files.lua---File-manipulation---create-does-not-override-existing-entry │ ├── tests-test_files.lua---File-manipulation---create-does-not-override-existing-entry-002 │ ├── tests-test_files.lua---File-manipulation---creates-files-in-nested-directories │ ├── tests-test_files.lua---File-manipulation---creates-files-in-nested-directories-002 │ ├── tests-test_files.lua---File-manipulation---creates-nested-directories │ ├── tests-test_files.lua---File-manipulation---creates-nested-directories-002 │ ├── tests-test_files.lua---File-manipulation---handles-backslash-on-Unix │ ├── tests-test_files.lua---File-manipulation---handles-backslash-on-Unix-002 │ ├── tests-test_files.lua---File-manipulation---handles-move-directory-inside-itself │ ├── tests-test_files.lua---File-manipulation---handles-move-directory-inside-itself-002 │ ├── tests-test_files.lua---File-manipulation---ignores-blank-lines │ ├── tests-test_files.lua---File-manipulation---ignores-blank-lines-002 │ ├── tests-test_files.lua---File-manipulation---ignores-identical-user-copied-entries │ ├── tests-test_files.lua---File-manipulation---ignores-identical-user-copied-entries-002 │ ├── tests-test_files.lua---File-manipulation---move-does-not-override-existing-entry │ ├── tests-test_files.lua---File-manipulation---move-does-not-override-existing-entry-002 │ ├── tests-test_files.lua---File-manipulation---move-does-not-override-existing-entry-003 │ ├── tests-test_files.lua---File-manipulation---move-works-again-after-undo │ ├── tests-test_files.lua---File-manipulation---move-works-again-after-undo-002 │ ├── tests-test_files.lua---File-manipulation---rename-does-not-override-existing-entry │ ├── tests-test_files.lua---File-manipulation---rename-does-not-override-existing-entry-002 │ ├── tests-test_files.lua---File-manipulation---rename-does-not-override-existing-entry-003 │ ├── tests-test_files.lua---File-manipulation---rename-works-again-after-undo │ ├── tests-test_files.lua---File-manipulation---rename-works-again-after-undo-002 │ ├── tests-test_files.lua---File-manipulation---respects-modified-hidden-buffers │ ├── tests-test_files.lua---File-manipulation---works-with-problematic-names │ ├── tests-test_files.lua---File-manipulation---works-with-problematic-names-002 │ ├── tests-test_files.lua---Mappings---`go_in_plus`-supports--count- │ ├── tests-test_files.lua---Mappings---`go_in_plus`-supports--count--002 │ ├── tests-test_files.lua---Mappings---`go_in_plus`-works │ ├── tests-test_files.lua---Mappings---`go_in`-supports--count- │ ├── tests-test_files.lua---Mappings---`go_in`-supports--count--002 │ ├── tests-test_files.lua---Mappings---`go_in`-works │ ├── tests-test_files.lua---Mappings---`go_in`-works-in-linewise-Visual-mode │ ├── tests-test_files.lua---Mappings---`go_in`-works-in-linewise-Visual-mode-002 │ ├── tests-test_files.lua---Mappings---`go_in`-works-in-linewise-Visual-mode-003 │ ├── tests-test_files.lua---Mappings---`go_out_plus`-supports--count- │ ├── tests-test_files.lua---Mappings---`go_out_plus`-supports--count--002 │ ├── tests-test_files.lua---Mappings---`go_out_plus`-supports--count--003 │ ├── tests-test_files.lua---Mappings---`go_out_plus`-works │ ├── tests-test_files.lua---Mappings---`go_out_plus`-works-002 │ ├── tests-test_files.lua---Mappings---`go_out_plus`-works-003 │ ├── tests-test_files.lua---Mappings---`go_out`-supports--count- │ ├── tests-test_files.lua---Mappings---`go_out`-supports--count--002 │ ├── tests-test_files.lua---Mappings---`go_out`-supports--count--003 │ ├── tests-test_files.lua---Mappings---`go_out`-works │ ├── tests-test_files.lua---Mappings---`reset`-works │ ├── tests-test_files.lua---Mappings---`reset`-works-002 │ ├── tests-test_files.lua---Mappings---`reset`-works-003 │ ├── tests-test_files.lua---Mappings---`reveal_cwd`-works │ ├── tests-test_files.lua---Mappings---`reveal_cwd`-works-002 │ ├── tests-test_files.lua---Mappings---`reveal_cwd`-works-003 │ ├── tests-test_files.lua---Mappings---`show_help`-works │ ├── tests-test_files.lua---Mappings---`show_help`-works-002 │ ├── tests-test_files.lua---Mappings---`show_help`-works-003 │ ├── tests-test_files.lua---Mappings---`synchronize`-works │ ├── tests-test_files.lua---Mappings---`synchronize`-works-002 │ ├── tests-test_files.lua---Mappings---`synchronize`-works-003 │ ├── tests-test_files.lua---Mappings---`synchronize`-works-004 │ ├── tests-test_files.lua---Mappings---`synchronize`-works-005 │ ├── tests-test_files.lua---Mappings---`synchronize`-works-006 │ ├── tests-test_files.lua---Mappings---`trim_left`-works │ ├── tests-test_files.lua---Mappings---`trim_right`-works │ ├── tests-test_files.lua---Preview---always-updates-with-cursor │ ├── tests-test_files.lua---Preview---can-work-after-renaming-with-small-overall-width │ ├── tests-test_files.lua---Preview---can-work-after-renaming-with-small-overall-width-002 │ ├── tests-test_files.lua---Preview---does-not-highlight-big-files │ ├── tests-test_files.lua---Preview---is-not-removed-when-going-out │ ├── tests-test_files.lua---Preview---is-not-removed-when-going-out-002 │ ├── tests-test_files.lua---Preview---is-not-shown-if-not-enough-space │ ├── tests-test_files.lua---Preview---previews-only-one-level-deep │ ├── tests-test_files.lua---Preview---respects-global-value-of-'list'-and-'listchars'-option │ ├── tests-test_files.lua---Preview---respects-global-value-of-'list'-and-'listchars'-option-002 │ ├── tests-test_files.lua---Preview---respects-global-value-of-'list'-and-'listchars'-option-003 │ ├── tests-test_files.lua---Preview---respects-global-value-of-'list'-and-'listchars'-option-004 │ ├── tests-test_files.lua---Preview---works-after-`trim_left()` │ ├── tests-test_files.lua---Preview---works-for-directories │ ├── tests-test_files.lua---Preview---works-for-directories-002 │ ├── tests-test_files.lua---Preview---works-for-directories-003 │ ├── tests-test_files.lua---Preview---works-for-files │ ├── tests-test_files.lua---Preview---works-for-files-002 │ ├── tests-test_files.lua---Preview---works-for-files-003 │ ├── tests-test_files.lua---Preview---works-for-files-004 │ ├── tests-test_files.lua---Preview---works-for-files-005 │ ├── tests-test_files.lua---Preview---works-for-files-006 │ ├── tests-test_files.lua---Preview---works-with-imaginary-paths │ ├── tests-test_files.lua---Preview---works-with-imaginary-paths-002 │ ├── tests-test_files.lua---Preview---works-with-imaginary-paths-003 │ ├── tests-test_files.lua---Preview---works-with-imaginary-paths-004 │ ├── tests-test_files.lua---Preview---works-with-imaginary-paths-005 │ ├── tests-test_files.lua---Preview---works-with-imaginary-paths-006 │ ├── tests-test_files.lua---Preview---works-with-imaginary-paths-007 │ ├── tests-test_files.lua---Preview---works-with-imaginary-paths-008 │ ├── tests-test_files.lua---Windows---always-show-cursor-line-in-directories │ ├── tests-test_files.lua---Windows---always-show-cursor-line-in-directories-002 │ ├── tests-test_files.lua---Windows---correctly-computes-part-of-branch-to-show │ ├── tests-test_files.lua---Windows---correctly-computes-part-of-branch-to-show-002 │ ├── tests-test_files.lua---Windows---correctly-computes-part-of-branch-to-show-003 │ ├── tests-test_files.lua---Windows---correctly-computes-part-of-branch-to-show-004 │ ├── tests-test_files.lua---Windows---correctly-computes-part-of-branch-to-show-005 │ ├── tests-test_files.lua---Windows---correctly-computes-part-of-branch-to-show-006 │ ├── tests-test_files.lua---Windows---correctly-computes-part-of-branch-to-show-with-preview │ ├── tests-test_files.lua---Windows---correctly-highlight-content-during-editing │ ├── tests-test_files.lua---Windows---does-not-wrap-content │ ├── tests-test_files.lua---Windows---is-in-sync-with-cursor │ ├── tests-test_files.lua---Windows---is-in-sync-with-cursor-002 │ ├── tests-test_files.lua---Windows---is-in-sync-with-cursor-003 │ ├── tests-test_files.lua---Windows---is-in-sync-with-cursor-004 │ ├── tests-test_files.lua---Windows---is-in-sync-with-cursor-005 │ ├── tests-test_files.lua---Windows---never-shows-past-end-of-buffer │ ├── tests-test_files.lua---Windows---never-shows-past-end-of-buffer-002 │ ├── tests-test_files.lua---Windows---never-shows-past-end-of-buffer-003 │ ├── tests-test_files.lua---Windows---reacts-on-`VimResized` │ ├── tests-test_files.lua---Windows---reacts-on-`VimResized`-002 │ ├── tests-test_files.lua---Windows---reacts-on-`VimResized`-003 │ ├── tests-test_files.lua---Windows---reacts-on-`VimResized`-004 │ ├── tests-test_files.lua---Windows---respect-'winborder'-option │ ├── tests-test_files.lua---Windows---respect-'winborder'-option-002 │ ├── tests-test_files.lua---Windows---respect-'winborder'-option-003 │ ├── tests-test_files.lua---Windows---respects-tabline-and-statusline-when-computing-height │ ├── tests-test_files.lua---Windows---respects-tabline-and-statusline-when-computing-height-002 │ ├── tests-test_files.lua---Windows---respects-tabline-and-statusline-when-computing-height-003 │ ├── tests-test_files.lua---Windows---respects-tabline-and-statusline-when-computing-height-004 │ ├── tests-test_files.lua---Windows---respects-tabline-when-computing-position │ ├── tests-test_files.lua---Windows---works-with-too-small-dimensions │ ├── tests-test_files.lua---close()---checks-for-pending-file-system-actions │ ├── tests-test_files.lua---close()---checks-for-pending-file-system-actions-002 │ ├── tests-test_files.lua---close()---checks-for-pending-file-system-actions-003 │ ├── tests-test_files.lua---close()---handles-invalid-target-window │ ├── tests-test_files.lua---close()---handles-invalid-target-window-002 │ ├── tests-test_files.lua---close()---works │ ├── tests-test_files.lua---close()---works-002 │ ├── tests-test_files.lua---close()---works-per-tabpage │ ├── tests-test_files.lua---go_in()---warns-about-paths-not-present-on-disk │ ├── tests-test_files.lua---go_in()---works-on-directory │ ├── tests-test_files.lua---go_in()---works-on-directory-002 │ ├── tests-test_files.lua---go_out()---root-update-reuses-buffers-without-their-update │ ├── tests-test_files.lua---go_out()---works-on-branch-root │ ├── tests-test_files.lua---go_out()---works-on-not-branch-root │ ├── tests-test_files.lua---open()---`content.prefix`-can-be-used-to-not-show-prefix │ ├── tests-test_files.lua---open()---`content.prefix`-can-return-`nil` │ ├── tests-test_files.lua---open()---`content.prefix`-can-return-`nil`-002 │ ├── tests-test_files.lua---open()---`content.prefix`-can-return-`nil`-003 │ ├── tests-test_files.lua---open()---`content.sort`-can-be-used-to-also-filter-items │ ├── tests-test_files.lua---open()---can-display-entries-with-newline-character │ ├── tests-test_files.lua---open()---can-display-entries-with-newline-character-002 │ ├── tests-test_files.lua---open()---focuses-on-file-entry-when-opened-from-history │ ├── tests-test_files.lua---open()---focuses-on-file-entry-when-opened-from-history-002 │ ├── tests-test_files.lua---open()---focuses-on-file-entry-when-opened-from-history-003 │ ├── tests-test_files.lua---open()---focuses-on-file-entry-when-opened-from-history-004 │ ├── tests-test_files.lua---open()---handles-backslash-on-Unix │ ├── tests-test_files.lua---open()---handles-problematic-entry-names │ ├── tests-test_files.lua---open()---history---handles-external-changes-between-calls │ ├── tests-test_files.lua---open()---history---handles-external-changes-between-calls-002 │ ├── tests-test_files.lua---open()---history---is-shared-across-tabpages │ ├── tests-test_files.lua---open()---history---is-shared-across-tabpages-002 │ ├── tests-test_files.lua---open()---history---is-shared-across-tabpages-003 │ ├── tests-test_files.lua---open()---history---opens-from-history-by-default │ ├── tests-test_files.lua---open()---history---opens-from-history-by-default-002 │ ├── tests-test_files.lua---open()---history---prefers-global-config-before-taking-from-history │ ├── tests-test_files.lua---open()---history---prefers-global-config-before-taking-from-history-002 │ ├── tests-test_files.lua---open()---history---respects-`use_latest` │ ├── tests-test_files.lua---open()---history---respects-`use_latest`-002 │ ├── tests-test_files.lua---open()---history---stores-whole-branch-and-not-only-visible-windows │ ├── tests-test_files.lua---open()---history---stores-whole-branch-and-not-only-visible-windows-002 │ ├── tests-test_files.lua---open()---normalizes-before-first-refresh-when-focused-on-directory-with-`windows.preview` │ ├── tests-test_files.lua---open()---normalizes-before-first-refresh-when-focused-on-file │ ├── tests-test_files.lua---open()---properly-closes-currently-opened-explorer │ ├── tests-test_files.lua---open()---respects-`content.filter` │ ├── tests-test_files.lua---open()---respects-`content.filter`-002 │ ├── tests-test_files.lua---open()---respects-`content.highlight` │ ├── tests-test_files.lua---open()---respects-`content.highlight`-002 │ ├── tests-test_files.lua---open()---respects-`content.prefix` │ ├── tests-test_files.lua---open()---respects-`content.prefix`-002 │ ├── tests-test_files.lua---open()---respects-`content.sort` │ ├── tests-test_files.lua---open()---respects-`content.sort`-002 │ ├── tests-test_files.lua---open()---respects-`mappings` │ ├── tests-test_files.lua---open()---respects-`mappings`-002 │ ├── tests-test_files.lua---open()---respects-`vim.b.minifiles_config` │ ├── tests-test_files.lua---open()---respects-`windows.max_number` │ ├── tests-test_files.lua---open()---respects-`windows.max_number`-002 │ ├── tests-test_files.lua---open()---respects-`windows.preview` │ ├── tests-test_files.lua---open()---respects-`windows.preview`-002 │ ├── tests-test_files.lua---open()---respects-`windows.width_focus`-and-`windows.width_nofocus` │ ├── tests-test_files.lua---open()---respects-`windows.width_focus`-and-`windows.width_nofocus`-002 │ ├── tests-test_files.lua---open()---respects-`windows.width_preview` │ ├── tests-test_files.lua---open()---respects-`windows.width_preview`-002 │ ├── tests-test_files.lua---open()---respects-`windows.width_preview`-003 │ ├── tests-test_files.lua---open()---respects-`windows.width_preview`-004 │ ├── tests-test_files.lua---open()---respects-`windows.width_preview`-005 │ ├── tests-test_files.lua---open()---respects-`windows.width_preview`-006 │ ├── tests-test_files.lua---open()---uses-`MiniIcons.get()`-with-full-path │ ├── tests-test_files.lua---open()---uses-icon-provider │ ├── tests-test_files.lua---open()---uses-icon-provider-002 │ ├── tests-test_files.lua---open()---uses-icon-provider-003 │ ├── tests-test_files.lua---open()---works-per-tabpage │ ├── tests-test_files.lua---open()---works-per-tabpage-002 │ ├── tests-test_files.lua---open()---works-per-tabpage-003 │ ├── tests-test_files.lua---open()---works-with-directory-path │ ├── tests-test_files.lua---open()---works-with-directory-path-002 │ ├── tests-test_files.lua---open()---works-with-directory-path-003 │ ├── tests-test_files.lua---open()---works-with-file-path │ ├── tests-test_files.lua---open()---works-with-file-path-002 │ ├── tests-test_files.lua---refresh()---does-not-update-buffers-with-`nil`-`filter`-and-`sort` │ ├── tests-test_files.lua---refresh()---does-not-update-buffers-with-`nil`-`filter`-and-`sort`-002 │ ├── tests-test_files.lua---refresh()---handles-presence-of-pending-file-system-actions │ ├── tests-test_files.lua---refresh()---handles-presence-of-pending-file-system-actions-002 │ ├── tests-test_files.lua---refresh()---handles-presence-of-pending-file-system-actions-003 │ ├── tests-test_files.lua---refresh()---handles-presence-of-pending-file-system-actions-004 │ ├── tests-test_files.lua---refresh()---preserves-explorer-options │ ├── tests-test_files.lua---refresh()---preserves-explorer-options-002 │ ├── tests-test_files.lua---refresh()---updates-buffers-with-non-empty-`content` │ ├── tests-test_files.lua---refresh()---updates-buffers-with-non-empty-`content`-002 │ ├── tests-test_files.lua---refresh()---updates-buffers-with-non-empty-`content`-003 │ ├── tests-test_files.lua---refresh()---updates-buffers-with-non-empty-`content`-004 │ ├── tests-test_files.lua---refresh()---works │ ├── tests-test_files.lua---reset()---resets-all-cursors │ ├── tests-test_files.lua---reset()---resets-all-cursors-002 │ ├── tests-test_files.lua---reset()---works │ ├── tests-test_files.lua---reset()---works-002 │ ├── tests-test_files.lua---reset()---works-when-anchor-is-not-in-branch │ ├── tests-test_files.lua---reset()---works-when-anchor-is-not-in-branch-002 │ ├── tests-test_files.lua---reveal_cwd()---properly-places-cursors │ ├── tests-test_files.lua---reveal_cwd()---properly-places-cursors-002 │ ├── tests-test_files.lua---reveal_cwd()---works │ ├── tests-test_files.lua---reveal_cwd()---works-002 │ ├── tests-test_files.lua---reveal_cwd()---works-when-not-inside-cwd │ ├── tests-test_files.lua---reveal_cwd()---works-when-not-inside-cwd-002 │ ├── tests-test_files.lua---reveal_cwd()---works-when-root-is-already-cwd │ ├── tests-test_files.lua---reveal_cwd()---works-when-root-is-already-cwd-002 │ ├── tests-test_files.lua---reveal_cwd()---works-with-preview │ ├── tests-test_files.lua---reveal_cwd()---works-with-preview-002 │ ├── tests-test_files.lua---set_branch()---works │ ├── tests-test_files.lua---set_branch()---works-002 │ ├── tests-test_files.lua---set_branch()---works-003 │ ├── tests-test_files.lua---set_branch()---works-with-file-path-in-branch │ ├── tests-test_files.lua---set_branch()---works-with-file-path-in-branch-002 │ ├── tests-test_files.lua---set_branch()---works-with-preview │ ├── tests-test_files.lua---show_help()---adjusts-window-width │ ├── tests-test_files.lua---show_help()---handles-bookmarks │ ├── tests-test_files.lua---show_help()---handles-mappings-without-description │ ├── tests-test_files.lua---show_help()---handles-non-default-mappings │ ├── tests-test_files.lua---show_help()---opens-relatively-current-window │ ├── tests-test_files.lua---show_help()---respects-'winborder'-option │ ├── tests-test_files.lua---show_help()---respects-'winborder'-option-002 │ ├── tests-test_files.lua---show_help()---respects-'winborder'-option-003 │ ├── tests-test_files.lua---show_help()---works │ ├── tests-test_files.lua---show_help()---works-002 │ ├── tests-test_files.lua---synchronize()---can-update-external-file-system-changes │ ├── tests-test_files.lua---trim_left()---works │ ├── tests-test_files.lua---trim_left()---works-002 │ ├── tests-test_files.lua---trim_left()---works-when-in-the-middle-of-the-branch │ ├── tests-test_files.lua---trim_left()---works-when-in-the-middle-of-the-branch-002 │ ├── tests-test_files.lua---trim_right()---works │ ├── tests-test_files.lua---trim_right()---works-002 │ ├── tests-test_files.lua---trim_right()---works-when-in-the-middle-of-the-branch │ ├── tests-test_files.lua---trim_right()---works-when-in-the-middle-of-the-branch-002 │ ├── tests-test_git.lua----Git---completion---uses-correct-working-directory-for-paths │ ├── tests-test_git.lua----Git---completion---works-with-explicit-paths │ ├── tests-test_git.lua----Git---completion---works-with-explicit-paths-002 │ ├── tests-test_git.lua----Git---completion---works-with-explicit-paths-003 │ ├── tests-test_git.lua----Git---completion---works-with-explicit-paths-004 │ ├── tests-test_git.lua----Git---completion---works-with-explicit-paths-005 │ ├── tests-test_git.lua----Git---completion---works-with-not-supported-command │ ├── tests-test_git.lua----Git---completion---works-with-not-supported-command-002 │ ├── tests-test_git.lua----Git---completion---works-with-not-supported-command-003 │ ├── tests-test_git.lua----Git---completion---works-with-options │ ├── tests-test_git.lua----Git---completion---works-with-options-002 │ ├── tests-test_git.lua----Git---completion---works-with-options-003 │ ├── tests-test_git.lua----Git---completion---works-with-options-004 │ ├── tests-test_git.lua----Git---completion---works-with-options-005 │ ├── tests-test_git.lua----Git---completion---works-with-options-006 │ ├── tests-test_git.lua----Git---completion---works-with-options-007 │ ├── tests-test_git.lua----Git---completion---works-with-present-command-modifiers │ ├── tests-test_git.lua----Git---completion---works-with-subcommand-targets │ ├── tests-test_git.lua----Git---completion---works-with-subcommand-targets-002 │ ├── tests-test_git.lua----Git---completion---works-with-subcommand-targets-003 │ ├── tests-test_git.lua----Git---completion---works-with-subcommand-targets-004 │ ├── tests-test_git.lua----Git---completion---works-with-subcommand-targets-005 │ ├── tests-test_git.lua----Git---completion---works-with-subcommand-targets-006 │ ├── tests-test_git.lua----Git---completion---works-with-subcommand-targets-007 │ ├── tests-test_git.lua----Git---completion---works-with-subcommand-targets-008 │ ├── tests-test_git.lua----Git---completion---works-with-subcommand-targets-009 │ ├── tests-test_git.lua----Git---completion---works-with-subcommand-targets-010 │ ├── tests-test_git.lua----Git---completion---works-with-subcommand-targets-011 │ ├── tests-test_git.lua----Git---completion---works-with-subcommand-targets-012 │ ├── tests-test_git.lua----Git---completion---works-with-subcommand-targets-013 │ ├── tests-test_git.lua----Git---completion---works-with-subcommand-targets-014 │ ├── tests-test_git.lua----Git---completion---works-with-subcommand-targets-015 │ ├── tests-test_git.lua----Git---completion---works-with-subcommand-targets-016 │ ├── tests-test_git.lua----Git---completion---works-with-subcommand-targets-017 │ ├── tests-test_git.lua----Git---completion---works-with-subcommand-targets-018 │ ├── tests-test_git.lua----Git---completion---works-with-subcommand-targets-019 │ ├── tests-test_git.lua----Git---completion---works-with-subcommand-targets-020 │ ├── tests-test_git.lua----Git---completion---works-with-subcommand-targets-021 │ ├── tests-test_git.lua----Git---completion---works-with-subcommand-targets-022 │ ├── tests-test_git.lua----Git---completion---works-with-subcommand-targets-023 │ ├── tests-test_git.lua----Git---completion---works-with-subcommand-targets-024 │ ├── tests-test_git.lua----Git---completion---works-with-subcommand-targets-025 │ ├── tests-test_git.lua----Git---completion---works-with-subcommand-targets-026 │ ├── tests-test_git.lua----Git---completion---works-with-subcommand-targets-027 │ ├── tests-test_git.lua----Git---completion---works-with-subcommand-targets-028 │ ├── tests-test_git.lua----Git---completion---works-with-subcommand-targets-029 │ ├── tests-test_git.lua----Git---completion---works-with-subcommand-targets-030 │ ├── tests-test_git.lua----Git---completion---works-with-subcommands │ ├── tests-test_git.lua----Git---completion---works-with-subcommands-002 │ ├── tests-test_git.lua----Git---completion---works-with-subcommands-003 │ ├── tests-test_git.lua----Git---completion---works-with-subcommands-004 │ ├── tests-test_git.lua----Git---completion---works-with-subcommands-005 │ ├── tests-test_git.lua----Git---completion---works-with-subcommands-006 │ ├── tests-test_git.lua---Tracking---redraws-statusline-when-summary-is-updated │ ├── tests-test_git.lua---Tracking---redraws-statusline-when-summary-is-updated-002 │ ├── tests-test_git.lua---Tracking---redraws-statusline-when-summary-is-updated-003 │ ├── tests-test_git.lua---Tracking---redraws-statusline-when-summary-is-updated-004 │ ├── tests-test_git.lua---Tracking---redraws-statusline-when-summary-is-updated-005 │ ├── tests-test_git.lua---diff_foldexpr()---works-in-`git-log`-output │ ├── tests-test_git.lua---diff_foldexpr()---works-in-`git-log`-output-002 │ ├── tests-test_git.lua---diff_foldexpr()---works-in-`git-log`-output-003 │ ├── tests-test_git.lua---diff_foldexpr()---works-in-`git-log`-output-004 │ ├── tests-test_git.lua---diff_foldexpr()---works-in-diff-patch │ ├── tests-test_git.lua---diff_foldexpr()---works-in-diff-patch-002 │ ├── tests-test_git.lua---diff_foldexpr()---works-in-diff-patch-003 │ ├── tests-test_git.lua---diff_foldexpr()---works-in-diff-patch-004 │ ├── tests-test_hipatterns.lua---Auto-enable---does-not-enable-in-not-proper-buffers │ ├── tests-test_hipatterns.lua---Auto-enable---makes-`-edit`-work │ ├── tests-test_hipatterns.lua---Auto-enable---makes-`-edit`-work-002 │ ├── tests-test_hipatterns.lua---Auto-enable---works │ ├── tests-test_hipatterns.lua---Autocommands---resets-on-color-scheme-change │ ├── tests-test_hipatterns.lua---Autocommands---resets-on-color-scheme-change-002 │ ├── tests-test_hipatterns.lua---Autocommands---resets-on-color-scheme-change-003 │ ├── tests-test_hipatterns.lua---Highlighters---allows-array-`pattern` │ ├── tests-test_hipatterns.lua---Highlighters---allows-array-`pattern`-002 │ ├── tests-test_hipatterns.lua---Highlighters---allows-callable-`group` │ ├── tests-test_hipatterns.lua---Highlighters---allows-callable-`pattern` │ ├── tests-test_hipatterns.lua---Highlighters---allows-frontier-pattern-in-`pattern` │ ├── tests-test_hipatterns.lua---Highlighters---allows-return-`nil`-`group`-to-not-highlight │ ├── tests-test_hipatterns.lua---Highlighters---allows-return-`nil`-`pattern`-to-not-highlight │ ├── tests-test_hipatterns.lua---Highlighters---allows-return-`nil`-`pattern`-to-not-highlight-002 │ ├── tests-test_hipatterns.lua---Highlighters---allows-submatch-in-`pattern` │ ├── tests-test_hipatterns.lua---Highlighters---allows-submatch-in-`pattern`-002 │ ├── tests-test_hipatterns.lua---Highlighters---allows-submatch-in-`pattern`-003 │ ├── tests-test_hipatterns.lua---Highlighters---allows-submatch-in-`pattern`-004 │ ├── tests-test_hipatterns.lua---Highlighters---allows-submatch-in-`pattern`-005 │ ├── tests-test_hipatterns.lua---Highlighters---respects-`extmark_opts.priority` │ ├── tests-test_hipatterns.lua---Highlighters---respects-`extmark_opts.priority`-002 │ ├── tests-test_hipatterns.lua---Highlighters---respects-`extmark_opts.priority`-003 │ ├── tests-test_hipatterns.lua---Highlighters---respects-`extmark_opts` │ ├── tests-test_hipatterns.lua---Highlighters---silently-skips-wrong-entries │ ├── tests-test_hipatterns.lua---disable()---works │ ├── tests-test_hipatterns.lua---disable()---works-002 │ ├── tests-test_hipatterns.lua---disable()---works-in-not-current-buffer │ ├── tests-test_hipatterns.lua---disable()---works-in-not-current-buffer-002 │ ├── tests-test_hipatterns.lua---enable()---does-not-flicker-during-text-insert │ ├── tests-test_hipatterns.lua---enable()---does-not-flicker-during-text-insert-002 │ ├── tests-test_hipatterns.lua---enable()---does-not-flicker-during-text-insert-003 │ ├── tests-test_hipatterns.lua---enable()---reacts-to-buffer-enter │ ├── tests-test_hipatterns.lua---enable()---reacts-to-buffer-enter-002 │ ├── tests-test_hipatterns.lua---enable()---reacts-to-delete-of-line-with-match │ ├── tests-test_hipatterns.lua---enable()---reacts-to-delete-of-line-with-match-002 │ ├── tests-test_hipatterns.lua---enable()---reacts-to-delete-of-line-with-match-003 │ ├── tests-test_hipatterns.lua---enable()---reacts-to-delete-of-line-with-match-004 │ ├── tests-test_hipatterns.lua---enable()---reacts-to-filetype-change │ ├── tests-test_hipatterns.lua---enable()---reacts-to-filetype-change-002 │ ├── tests-test_hipatterns.lua---enable()---reacts-to-filetype-change-003 │ ├── tests-test_hipatterns.lua---enable()---reacts-to-text-change │ ├── tests-test_hipatterns.lua---enable()---reacts-to-text-change-002 │ ├── tests-test_hipatterns.lua---enable()---reacts-to-text-change-003 │ ├── tests-test_hipatterns.lua---enable()---reacts-to-text-change-004 │ ├── tests-test_hipatterns.lua---enable()---reacts-to-text-change-005 │ ├── tests-test_hipatterns.lua---enable()---reacts-to-window-scroll │ ├── tests-test_hipatterns.lua---enable()---reacts-to-window-scroll-002 │ ├── tests-test_hipatterns.lua---enable()---reacts-to-window-scroll-003 │ ├── tests-test_hipatterns.lua---enable()---reacts-to-window-scroll-004 │ ├── tests-test_hipatterns.lua---enable()---respects-`vim.b.minihipatterns_config` │ ├── tests-test_hipatterns.lua---enable()---respects-`vim.b.minihipatterns_config`-002 │ ├── tests-test_hipatterns.lua---enable()---respects-`vim.b.minihipatterns_config`-003 │ ├── tests-test_hipatterns.lua---enable()---respects-`vim.{g,b}.minihipatterns_disable`---test-+-args-{-'b'-} │ ├── tests-test_hipatterns.lua---enable()---respects-`vim.{g,b}.minihipatterns_disable`---test-+-args-{-'g'-} │ ├── tests-test_hipatterns.lua---enable()---respects-global-config-after-`setup()` │ ├── tests-test_hipatterns.lua---enable()---works │ ├── tests-test_hipatterns.lua---enable()---works-in-not-current-buffer │ ├── tests-test_hipatterns.lua---enable()---works-in-not-normal-buffer │ ├── tests-test_hipatterns.lua---enable()---works-with-defaults │ ├── tests-test_hipatterns.lua---gen_highlighter---hex_color()---respects-`opts.filter` │ ├── tests-test_hipatterns.lua---gen_highlighter---hex_color()---respects-`opts.filter`-002 │ ├── tests-test_hipatterns.lua---gen_highlighter---hex_color()---respects-`opts.priority` │ ├── tests-test_hipatterns.lua---gen_highlighter---hex_color()---respects-`opts.priority`-002 │ ├── tests-test_hipatterns.lua---gen_highlighter---hex_color()---respects-`opts.priority`-003 │ ├── tests-test_hipatterns.lua---gen_highlighter---hex_color()---works │ ├── tests-test_hipatterns.lua---gen_highlighter---hex_color()---works-with-style-'#' │ ├── tests-test_hipatterns.lua---gen_highlighter---hex_color()---works-with-style-'inline' │ ├── tests-test_hipatterns.lua---gen_highlighter---hex_color()---works-with-style-'line' │ ├── tests-test_hipatterns.lua---setup()---auto-enables-in-all-visible-buffers │ ├── tests-test_hipatterns.lua---setup()---auto-enables-in-all-visible-buffers-002 │ ├── tests-test_hipatterns.lua---toggle()---works │ ├── tests-test_hipatterns.lua---toggle()---works-002 │ ├── tests-test_hipatterns.lua---update()---works │ ├── tests-test_hipatterns.lua---update()---works-002 │ ├── tests-test_hipatterns.lua---update()---works-003 │ ├── tests-test_hipatterns.lua---update()---works-004 │ ├── tests-test_hipatterns.lua---update()---works-005 │ ├── tests-test_hipatterns.lua---update()---works-006 │ ├── tests-test_indentscope.lua---Auto-drawing---by-default-is-not-done-for-incomplete-scope │ ├── tests-test_indentscope.lua---Auto-drawing---by-default-is-not-done-for-incomplete-scope-002 │ ├── tests-test_indentscope.lua---Auto-drawing---by-default-is-not-done-for-incomplete-scope-003 │ ├── tests-test_indentscope.lua---Auto-drawing---by-default-is-not-done-for-incomplete-scope-004 │ ├── tests-test_indentscope.lua---Auto-drawing---by-default-is-not-done-for-incomplete-scope-005 │ ├── tests-test_indentscope.lua---Auto-drawing---implements-debounce-style-delay │ ├── tests-test_indentscope.lua---Auto-drawing---implements-debounce-style-delay-002 │ ├── tests-test_indentscope.lua---Auto-drawing---respects-ModeChanged-event │ ├── tests-test_indentscope.lua---Auto-drawing---respects-ModeChanged-event-002 │ ├── tests-test_indentscope.lua---Auto-drawing---respects-ModeChanged-event-003 │ ├── tests-test_indentscope.lua---Auto-drawing---respects-`config.draw.delay` │ ├── tests-test_indentscope.lua---Auto-drawing---respects-`config.draw.delay`-002 │ ├── tests-test_indentscope.lua---Auto-drawing---respects-`config.draw.predicate` │ ├── tests-test_indentscope.lua---Auto-drawing---respects-`config.draw.predicate`-002 │ ├── tests-test_indentscope.lua---Auto-drawing---respects-`config.draw.predicate`-003 │ ├── tests-test_indentscope.lua---Auto-drawing---respects-`vim.{g,b}.miniindentscope_disable`---test-+-args-{-'b'-} │ ├── tests-test_indentscope.lua---Auto-drawing---respects-`vim.{g,b}.miniindentscope_disable`---test-+-args-{-'b'-}-002 │ ├── tests-test_indentscope.lua---Auto-drawing---respects-`vim.{g,b}.miniindentscope_disable`---test-+-args-{-'g'-} │ ├── tests-test_indentscope.lua---Auto-drawing---respects-`vim.{g,b}.miniindentscope_disable`---test-+-args-{-'g'-}-002 │ ├── tests-test_indentscope.lua---Auto-drawing---respects-common-events---test-+-args-{-'CursorMoved'-} │ ├── tests-test_indentscope.lua---Auto-drawing---respects-common-events---test-+-args-{-'CursorMovedI'-} │ ├── tests-test_indentscope.lua---Auto-drawing---respects-common-events---test-+-args-{-'TextChanged'-} │ ├── tests-test_indentscope.lua---Auto-drawing---respects-common-events---test-+-args-{-'TextChangedI'-} │ ├── tests-test_indentscope.lua---Auto-drawing---respects-common-events---test-+-args-{-'TextChangedP'-} │ ├── tests-test_indentscope.lua---Auto-drawing---updates-immediately-when-scopes-intersect │ ├── tests-test_indentscope.lua---Auto-drawing---updates-immediately-when-scopes-intersect-002 │ ├── tests-test_indentscope.lua---Auto-drawing---works-in-Insert-mode │ ├── tests-test_indentscope.lua---Auto-drawing---works-in-Insert-mode-002 │ ├── tests-test_indentscope.lua---Auto-drawing---works-in-Insert-mode-003 │ ├── tests-test_indentscope.lua---Auto-drawing---works-in-Normal-mode │ ├── tests-test_indentscope.lua---Auto-drawing---works-in-Normal-mode-002 │ ├── tests-test_indentscope.lua---Auto-drawing---works-in-Normal-mode-003 │ ├── tests-test_indentscope.lua---draw()---does-not-overshadow-'listchars' │ ├── tests-test_indentscope.lua---draw()---does-not-round-time-of-every-animation-step │ ├── tests-test_indentscope.lua---draw()---respects-`config.draw.animation` │ ├── tests-test_indentscope.lua---draw()---respects-`config.draw.animation`-002 │ ├── tests-test_indentscope.lua---draw()---respects-`config.draw.animation`-003 │ ├── tests-test_indentscope.lua---draw()---respects-`config.draw.animation`-004 │ ├── tests-test_indentscope.lua---draw()---respects-`config.draw.priority` │ ├── tests-test_indentscope.lua---draw()---respects-`config.draw.priority`-002 │ ├── tests-test_indentscope.lua---draw()---respects-`config.symbol` │ ├── tests-test_indentscope.lua---draw()---respects-`config.symbol`-002 │ ├── tests-test_indentscope.lua---draw()---shows-symbols-on-wrapped-lines-without-overlapping │ ├── tests-test_indentscope.lua---draw()---shows-symbols-on-wrapped-lines-without-overlapping-002 │ ├── tests-test_indentscope.lua---draw()---shows-symbols-on-wrapped-lines-without-overlapping-003 │ ├── tests-test_indentscope.lua---draw()---works │ ├── tests-test_indentscope.lua---draw()---works-002 │ ├── tests-test_indentscope.lua---draw()---works-003 │ ├── tests-test_indentscope.lua---draw()---works-004 │ ├── tests-test_indentscope.lua---undraw()---works │ ├── tests-test_indentscope.lua---undraw()---works-002 │ ├── tests-test_jump.lua---Delayed-highlighting---done-only-if-actually-jumping │ ├── tests-test_jump.lua---Delayed-highlighting---implements-debounce-style-delay │ ├── tests-test_jump.lua---Delayed-highlighting---implements-debounce-style-delay-002 │ ├── tests-test_jump.lua---Delayed-highlighting---implements-debounce-style-delay-003 │ ├── tests-test_jump.lua---Delayed-highlighting---never-highlights-in-Insert-mode │ ├── tests-test_jump.lua---Delayed-highlighting---never-highlights-in-Insert-mode-002 │ ├── tests-test_jump.lua---Delayed-highlighting---respects-'ignorecase' │ ├── tests-test_jump.lua---Delayed-highlighting---respects-'smartcase' │ ├── tests-test_jump.lua---Delayed-highlighting---respects-`config.delay.highlight`---test-+-args-{-'backward'-} │ ├── tests-test_jump.lua---Delayed-highlighting---respects-`config.delay.highlight`---test-+-args-{-'backward'-}-002 │ ├── tests-test_jump.lua---Delayed-highlighting---respects-`config.delay.highlight`---test-+-args-{-'backward_till'-} │ ├── tests-test_jump.lua---Delayed-highlighting---respects-`config.delay.highlight`---test-+-args-{-'backward_till'-}-002 │ ├── tests-test_jump.lua---Delayed-highlighting---respects-`config.delay.highlight`---test-+-args-{-'forward'-} │ ├── tests-test_jump.lua---Delayed-highlighting---respects-`config.delay.highlight`---test-+-args-{-'forward'-}-002 │ ├── tests-test_jump.lua---Delayed-highlighting---respects-`config.delay.highlight`---test-+-args-{-'forward_till'-} │ ├── tests-test_jump.lua---Delayed-highlighting---respects-`config.delay.highlight`---test-+-args-{-'forward_till'-}-002 │ ├── tests-test_jump.lua---Delayed-highlighting---respects-`vim.b.minijump_config` │ ├── tests-test_jump.lua---Delayed-highlighting---respects-`vim.b.minijump_config`-002 │ ├── tests-test_jump.lua---Delayed-highlighting---stops-immediately-when-not-jumping │ ├── tests-test_jump.lua---Delayed-highlighting---stops-immediately-when-not-jumping-002 │ ├── tests-test_jump.lua---Delayed-highlighting---updates-immediately-within-same-jumping │ ├── tests-test_jump.lua---Delayed-highlighting---updates-immediately-within-same-jumping-002 │ ├── tests-test_jump.lua---Delayed-highlighting---updates-immediately-within-same-jumping-003 │ ├── tests-test_jump.lua---Delayed-highlighting---works---test-+-args-{-'backward'-} │ ├── tests-test_jump.lua---Delayed-highlighting---works---test-+-args-{-'backward'-}-002 │ ├── tests-test_jump.lua---Delayed-highlighting---works---test-+-args-{-'backward_till'-} │ ├── tests-test_jump.lua---Delayed-highlighting---works---test-+-args-{-'backward_till'-}-002 │ ├── tests-test_jump.lua---Delayed-highlighting---works---test-+-args-{-'forward'-} │ ├── tests-test_jump.lua---Delayed-highlighting---works---test-+-args-{-'forward'-}-002 │ ├── tests-test_jump.lua---Delayed-highlighting---works---test-+-args-{-'forward_till'-} │ ├── tests-test_jump.lua---Delayed-highlighting---works---test-+-args-{-'forward_till'-}-002 │ ├── tests-test_jump.lua---Jumping-with-f-t-F-T---respects-`config.silent` │ ├── tests-test_jump.lua---Jumping-with-f-t-F-T---shows-reminder-after-one-idle-second │ ├── tests-test_jump.lua---Jumping-with-f-t-F-T---shows-reminder-after-one-idle-second-002 │ ├── tests-test_jump.lua---Stop-jumping-after-idle---works │ ├── tests-test_jump.lua---Stop-jumping-after-idle---works-002 │ ├── tests-test_jump.lua---Stop-jumping-after-idle---works-if-should-be-done-before-target-highlighting │ ├── tests-test_jump2d.lua---builtin_opts.line_start---works │ ├── tests-test_jump2d.lua---builtin_opts.single_character---shows-reminder-after-one-idle-second │ ├── tests-test_jump2d.lua---builtin_opts.word_start---works │ ├── tests-test_jump2d.lua---builtin_opts.word_start---works-002 │ ├── tests-test_jump2d.lua---builtin_opts.word_start---works-with-multibyte-characters │ ├── tests-test_jump2d.lua---default_spotter()---correctly-merges-'overlapping'-spots │ ├── tests-test_jump2d.lua---default_spotter()---spots-before-and-after-punctuation │ ├── tests-test_jump2d.lua---default_spotter()---spots-first-capital-letter │ ├── tests-test_jump2d.lua---default_spotter()---spots-start-and-end-of-words │ ├── tests-test_jump2d.lua---default_spotter()---works │ ├── tests-test_jump2d.lua---default_spotter()---works-(almost)-with-multibyte-character │ ├── tests-test_jump2d.lua---gen_spotter---pattern()---handles-patterns-with-'^'-and-'$'---test-+-args-{-'.()..$',-'none'-} │ ├── tests-test_jump2d.lua---gen_spotter---pattern()---handles-patterns-with-'^'-and-'$'---test-+-args-{-'...$',-'end'-} │ ├── tests-test_jump2d.lua---gen_spotter---pattern()---handles-patterns-with-'^'-and-'$'---test-+-args-{-'...$',-'start'-} │ ├── tests-test_jump2d.lua---gen_spotter---pattern()---handles-patterns-with-'^'-and-'$'---test-+-args-{-'^.()..',-'none'-} │ ├── tests-test_jump2d.lua---gen_spotter---pattern()---handles-patterns-with-'^'-and-'$'---test-+-args-{-'^...',-'end'-} │ ├── tests-test_jump2d.lua---gen_spotter---pattern()---handles-patterns-with-'^'-and-'$'---test-+-args-{-'^...',-'start'-} │ ├── tests-test_jump2d.lua---gen_spotter---pattern()---respects-`pattern`-argument │ ├── tests-test_jump2d.lua---gen_spotter---pattern()---respects-`side`-argument---test-+-args-{-'%S+',-'end'-} │ ├── tests-test_jump2d.lua---gen_spotter---pattern()---respects-`side`-argument---test-+-args-{-'%S+',-'start'-} │ ├── tests-test_jump2d.lua---gen_spotter---pattern()---respects-`side`-argument---test-+-args-{-'.().',-'none'-} │ ├── tests-test_jump2d.lua---gen_spotter---pattern()---works │ ├── tests-test_jump2d.lua---gen_spotter---pattern()---works-in-edge-cases │ ├── tests-test_jump2d.lua---gen_spotter---pattern()---works-with-multibyte-characters │ ├── tests-test_jump2d.lua---gen_spotter---pattern()---works-with-multibyte-characters-002 │ ├── tests-test_jump2d.lua---gen_spotter---union()---works │ ├── tests-test_jump2d.lua---gen_spotter---vimpattern---respects-`pattern`-argument │ ├── tests-test_jump2d.lua---gen_spotter---vimpattern---works │ ├── tests-test_jump2d.lua---gen_spotter---vimpattern---works-002 │ ├── tests-test_jump2d.lua---gen_spotter---vimpattern---works-with-anchored-patterns │ ├── tests-test_jump2d.lua---gen_spotter---vimpattern---works-with-anchored-patterns-002 │ ├── tests-test_jump2d.lua---gen_spotter---vimpattern---works-with-anchored-patterns-003 │ ├── tests-test_jump2d.lua---gen_spotter---vimpattern---works-with-anchored-patterns-004 │ ├── tests-test_jump2d.lua---gen_spotter---vimpattern---works-with-multibyte-characters │ ├── tests-test_jump2d.lua---setup()---applies-`config.mappings` │ ├── tests-test_jump2d.lua---start()---allows-`hook.before_start`-to-modify-spotter │ ├── tests-test_jump2d.lua---start()---handles-overlapping-multi-step-labels │ ├── tests-test_jump2d.lua---start()---handles-overlapping-multi-step-labels-002 │ ├── tests-test_jump2d.lua---start()---handles-overlapping-multi-step-labels-003 │ ├── tests-test_jump2d.lua---start()---handles-overlapping-multi-step-labels-004 │ ├── tests-test_jump2d.lua---start()---handles-very-big-`view.n_steps_ahead` │ ├── tests-test_jump2d.lua---start()---handles-very-big-`view.n_steps_ahead`-002 │ ├── tests-test_jump2d.lua---start()---highlights-unique-labels-with-different-highlight-group │ ├── tests-test_jump2d.lua---start()---ignores-current-window-during-label-computation---test-+-args-{-'bottomleft'-} │ ├── tests-test_jump2d.lua---start()---ignores-current-window-during-label-computation---test-+-args-{-'topright'-} │ ├── tests-test_jump2d.lua---start()---ignores-cursor-position-during-label-computation---test-+-args-{-1,-1-} │ ├── tests-test_jump2d.lua---start()---ignores-cursor-position-during-label-computation---test-+-args-{-2,-0-} │ ├── tests-test_jump2d.lua---start()---ignores-cursor-position-during-label-computation---test-+-args-{-3,-0-} │ ├── tests-test_jump2d.lua---start()---ignores-cursor-position-during-label-computation---test-+-args-{-3,-3-} │ ├── tests-test_jump2d.lua---start()---ignores-not-focusable-windows │ ├── tests-test_jump2d.lua---start()---jumps-immediately-to-single-spot │ ├── tests-test_jump2d.lua---start()---overrides-`config`-from-`opts`-argument │ ├── tests-test_jump2d.lua---start()---respects-`allowed_lines.blank` │ ├── tests-test_jump2d.lua---start()---respects-`allowed_lines.blank`-002 │ ├── tests-test_jump2d.lua---start()---respects-`allowed_lines.cursor_-`---test-+-args-{-'cursor_after'-} │ ├── tests-test_jump2d.lua---start()---respects-`allowed_lines.cursor_-`---test-+-args-{-'cursor_after'-}-002 │ ├── tests-test_jump2d.lua---start()---respects-`allowed_lines.cursor_-`---test-+-args-{-'cursor_at'-} │ ├── tests-test_jump2d.lua---start()---respects-`allowed_lines.cursor_-`---test-+-args-{-'cursor_at'-}-002 │ ├── tests-test_jump2d.lua---start()---respects-`allowed_lines.cursor_-`---test-+-args-{-'cursor_before'-} │ ├── tests-test_jump2d.lua---start()---respects-`allowed_lines.cursor_-`---test-+-args-{-'cursor_before'-}-002 │ ├── tests-test_jump2d.lua---start()---respects-`allowed_lines.fold` │ ├── tests-test_jump2d.lua---start()---respects-`allowed_lines.fold`-002 │ ├── tests-test_jump2d.lua---start()---respects-`allowed_windows`---test-+-args-{-{current-=-false,not_current-=-false}-} │ ├── tests-test_jump2d.lua---start()---respects-`allowed_windows`---test-+-args-{-{current-=-false,not_current-=-false}-}-002 │ ├── tests-test_jump2d.lua---start()---respects-`allowed_windows`---test-+-args-{-{current-=-false}-} │ ├── tests-test_jump2d.lua---start()---respects-`allowed_windows`---test-+-args-{-{current-=-false}-}-002 │ ├── tests-test_jump2d.lua---start()---respects-`allowed_windows`---test-+-args-{-{not_current-=-false}-} │ ├── tests-test_jump2d.lua---start()---respects-`allowed_windows`---test-+-args-{-{not_current-=-false}-}-002 │ ├── tests-test_jump2d.lua---start()---respects-`config.silent` │ ├── tests-test_jump2d.lua---start()---respects-`labels` │ ├── tests-test_jump2d.lua---start()---respects-`labels`-002 │ ├── tests-test_jump2d.lua---start()---respects-`opts.hl_group_dim` │ ├── tests-test_jump2d.lua---start()---respects-`spotter` │ ├── tests-test_jump2d.lua---start()---respects-`spotter`-002 │ ├── tests-test_jump2d.lua---start()---respects-`view.dim` │ ├── tests-test_jump2d.lua---start()---respects-`view.dim`-002 │ ├── tests-test_jump2d.lua---start()---respects-`view.dim`-003 │ ├── tests-test_jump2d.lua---start()---respects-`view.n_steps_ahead` │ ├── tests-test_jump2d.lua---start()---respects-`view.n_steps_ahead`-002 │ ├── tests-test_jump2d.lua---start()---respects-`view.n_steps_ahead`-003 │ ├── tests-test_jump2d.lua---start()---respects-`view.n_steps_ahead`-004 │ ├── tests-test_jump2d.lua---start()---respects-`view.n_steps_ahead`-005 │ ├── tests-test_jump2d.lua---start()---respects-`vim.{g,b}.minijump2d_disable`---test-+-args-{-'b'-} │ ├── tests-test_jump2d.lua---start()---respects-`vim.{g,b}.minijump2d_disable`---test-+-args-{-'g'-} │ ├── tests-test_jump2d.lua---start()---respects-folds │ ├── tests-test_jump2d.lua---start()---respects-folds-002 │ ├── tests-test_jump2d.lua---start()---shows-reminder-after-one-idle-second │ ├── tests-test_jump2d.lua---start()---shows-reminder-after-one-idle-second-002 │ ├── tests-test_jump2d.lua---start()---shows-reminder-after-one-idle-second-003 │ ├── tests-test_jump2d.lua---start()---stops-jumping-if-not-label-was-typed---test-+-args-{-'-C-c-'-} │ ├── tests-test_jump2d.lua---start()---stops-jumping-if-not-label-was-typed---test-+-args-{-'-Down-'-} │ ├── tests-test_jump2d.lua---start()---stops-jumping-if-not-label-was-typed---test-+-args-{-'-Esc-'-} │ ├── tests-test_jump2d.lua---start()---traverses-floating-windows-at-the-end │ ├── tests-test_jump2d.lua---start()---traverses-visible-'regular'-windows-based-on-their-layout │ ├── tests-test_jump2d.lua---start()---uses-`-CR-`-to-jump-to-first-available-spot │ ├── tests-test_jump2d.lua---start()---uses-`spotter`-with-correct-arguments │ ├── tests-test_jump2d.lua---start()---uses-only-all-visible-windows-by-default │ ├── tests-test_jump2d.lua---start()---uses-only-visible-lines │ ├── tests-test_jump2d.lua---start()---uses-only-visible-lines-002 │ ├── tests-test_jump2d.lua---start()---works │ ├── tests-test_jump2d.lua---start()---works-002 │ ├── tests-test_jump2d.lua---start()---works-in-Operator-pending-mode │ ├── tests-test_jump2d.lua---start()---works-in-Operator-pending-mode-002 │ ├── tests-test_jump2d.lua---start()---works-in-Operator-pending-mode-003 │ ├── tests-test_jump2d.lua---start()---works-in-Operator-pending-mode-004 │ ├── tests-test_jump2d.lua---start()---works-in-Visual-mode │ ├── tests-test_jump2d.lua---start()---works-in-Visual-mode-002 │ ├── tests-test_jump2d.lua---stop()---clears-all-highlighting │ ├── tests-test_jump2d.lua---stop()---clears-all-highlighting-002 │ ├── tests-test_jump2d.lua---stop()---works │ ├── tests-test_jump2d.lua---stop()---works-002 │ ├── tests-test_map.lua---Cursor-in-map-window---opens-enough-folds-in-source-window │ ├── tests-test_map.lua---Cursor-in-map-window---opens-enough-folds-in-source-window-002 │ ├── tests-test_map.lua---Pure-scrollbar---is-active-when-width-is-lower-than-offset │ ├── tests-test_map.lua---Pure-scrollbar---is-active-when-width-is-lower-than-offset-002 │ ├── tests-test_map.lua---Pure-scrollbar---is-active-when-width-is-lower-than-offset-003 │ ├── tests-test_map.lua---Pure-scrollbar---works │ ├── tests-test_map.lua---Pure-scrollbar---works-002 │ ├── tests-test_map.lua---Scrollbar---updates-on-cursor-movement │ ├── tests-test_map.lua---Scrollbar---updates-on-cursor-movement-002 │ ├── tests-test_map.lua---Scrollbar---updates-on-cursor-movement-003 │ ├── tests-test_map.lua---Scrollbar---updates-on-cursor-movement-004 │ ├── tests-test_map.lua---Scrollbar---updates-on-source-window-scrolling │ ├── tests-test_map.lua---Scrollbar---updates-on-source-window-scrolling-002 │ ├── tests-test_map.lua---Window---does-not-account-for-folds │ ├── tests-test_map.lua---Window---does-not-account-for-folds-002 │ ├── tests-test_map.lua---Window---does-not-account-for-folds-003 │ ├── tests-test_map.lua---Window---does-not-respect-'winborder'-option │ ├── tests-test_map.lua---Window---fully-updates-on-buffer-enter │ ├── tests-test_map.lua---Window---fully-updates-on-buffer-enter-002 │ ├── tests-test_map.lua---Window---fully-updates-on-buffer-write │ ├── tests-test_map.lua---Window---fully-updates-on-buffer-write-002 │ ├── tests-test_map.lua---Window---fully-updates-on-mode-change-to-Normal │ ├── tests-test_map.lua---Window---fully-updates-on-mode-change-to-Normal-002 │ ├── tests-test_map.lua---Window---fully-updates-on-text-change-in-Normal-mode │ ├── tests-test_map.lua---Window---fully-updates-on-text-change-in-Normal-mode-002 │ ├── tests-test_map.lua---Window---fully-updates-on-vim-resize │ ├── tests-test_map.lua---Window---fully-updates-on-vim-resize-002 │ ├── tests-test_map.lua---gen_encode_symbols---can-be-used-as-`MiniMap.config.symbols.encode` │ ├── tests-test_map.lua---gen_encode_symbols---can-be-used-as-part-of-`opts.symbols.encode` │ ├── tests-test_map.lua---gen_integration---builtin_search()---respects-documented-keymaps │ ├── tests-test_map.lua---gen_integration---builtin_search()---respects-documented-keymaps-002 │ ├── tests-test_map.lua---gen_integration---builtin_search()---respects-documented-keymaps-003 │ ├── tests-test_map.lua---gen_integration---builtin_search()---respects-documented-keymaps-004 │ ├── tests-test_map.lua---gen_integration---builtin_search()---updates-when-appropriate │ ├── tests-test_map.lua---gen_integration---builtin_search()---updates-when-appropriate-002 │ ├── tests-test_map.lua---gen_integration---builtin_search()---updates-when-appropriate-003 │ ├── tests-test_map.lua---gen_integration---builtin_search()---updates-when-appropriate-004 │ ├── tests-test_map.lua---gen_integration---builtin_search()---updates-when-appropriate-005 │ ├── tests-test_map.lua---gen_integration---builtin_search()---works │ ├── tests-test_map.lua---gen_integration---builtin_search()---works-002 │ ├── tests-test_map.lua---gen_integration---diagnostic()---respects-`hl_groups`-argument │ ├── tests-test_map.lua---gen_integration---diagnostic()---respects-`hl_groups`-argument-002 │ ├── tests-test_map.lua---gen_integration---diagnostic()---respects-`hl_groups`-argument-003 │ ├── tests-test_map.lua---gen_integration---diagnostic()---respects-`hl_groups`-argument-004 │ ├── tests-test_map.lua---gen_integration---diagnostic()---updates-when-appropriate │ ├── tests-test_map.lua---gen_integration---diagnostic()---updates-when-appropriate-002 │ ├── tests-test_map.lua---gen_integration---diagnostic()---works │ ├── tests-test_map.lua---gen_integration---diff()---works │ ├── tests-test_map.lua---gen_integration---gitsigns()---respects-`hl_groups`-argument │ ├── tests-test_map.lua---gen_integration---gitsigns()---updates-when-appropriate │ ├── tests-test_map.lua---gen_integration---gitsigns()---updates-when-appropriate-002 │ ├── tests-test_map.lua---gen_integration---gitsigns()---works │ ├── tests-test_map.lua---open()---allows-more-than-single-character-in-scroll-symbols │ ├── tests-test_map.lua---open()---can-open-pure-scrollbar │ ├── tests-test_map.lua---open()---respects-`MiniMapNormal`-highlight-group │ ├── tests-test_map.lua---open()---respects-`opts.integrations`-argument │ ├── tests-test_map.lua---open()---respects-`opts.symbols`-argument │ ├── tests-test_map.lua---open()---respects-`opts.symbols`-argument-002 │ ├── tests-test_map.lua---open()---respects-`opts.window`-argument │ ├── tests-test_map.lua---open()---shows-appropriate-integration-counts │ ├── tests-test_map.lua---open()---works │ ├── tests-test_map.lua---refresh()---respects-`opts.integrations`-argument │ ├── tests-test_map.lua---refresh()---respects-`opts.symbols`-argument │ ├── tests-test_map.lua---refresh()---respects-`opts.window`-argument │ ├── tests-test_map.lua---refresh()---respects-`parts`-argument │ ├── tests-test_map.lua---refresh()---respects-`parts`-argument-002 │ ├── tests-test_map.lua---refresh()---respects-`parts`-argument-003 │ ├── tests-test_map.lua---refresh()---respects-`parts`-argument-004 │ ├── tests-test_map.lua---refresh()---respects-`parts`-argument-005 │ ├── tests-test_map.lua---refresh()---respects-`vim.{g,b}.minimap_disable`---test-+-args-{-'b'-} │ ├── tests-test_map.lua---refresh()---respects-`vim.{g,b}.minimap_disable`---test-+-args-{-'g'-} │ ├── tests-test_map.lua---refresh()---works │ ├── tests-test_map.lua---refresh()---works-002 │ ├── tests-test_misc.lua---zoom()---respects-'winborder'-option │ ├── tests-test_misc.lua---zoom()---respects-'winborder'-option-002 │ ├── tests-test_misc.lua---zoom()---respects-'winborder'-option-003 │ ├── tests-test_misc.lua---zoom()---respects-`config`-argument │ ├── tests-test_misc.lua---zoom()---respects-`config`-argument-002 │ ├── tests-test_misc.lua---zoom()---respects-`config`-argument-003 │ ├── tests-test_misc.lua---zoom()---respects-`config`-argument-004 │ ├── tests-test_misc.lua---zoom()---respects-`config`-argument-005 │ ├── tests-test_misc.lua---zoom()---respects-`config`-argument-006 │ ├── tests-test_misc.lua---zoom()---respects-`config`-argument-007 │ ├── tests-test_misc.lua---zoom()---respects-`config`-argument-008 │ ├── tests-test_misc.lua---zoom()---respects-`config`-argument-009 │ ├── tests-test_misc.lua---zoom()---works │ ├── tests-test_notify.lua---LSP-progress---handles-not-present-data │ ├── tests-test_notify.lua---LSP-progress---handles-not-present-data-002 │ ├── tests-test_notify.lua---LSP-progress---handles-not-present-data-003 │ ├── tests-test_notify.lua---LSP-progress---respects-`lsp_progress.duration_last` │ ├── tests-test_notify.lua---LSP-progress---respects-`lsp_progress.duration_last`-002 │ ├── tests-test_notify.lua---LSP-progress---works │ ├── tests-test_notify.lua---LSP-progress---works-002 │ ├── tests-test_notify.lua---LSP-progress---works-003 │ ├── tests-test_notify.lua---LSP-progress---works-004 │ ├── tests-test_notify.lua---LSP-progress---works-005 │ ├── tests-test_notify.lua---Window---computes-default-dimensions-based-on-buffer-content │ ├── tests-test_notify.lua---Window---computes-default-dimensions-based-on-buffer-content-002 │ ├── tests-test_notify.lua---Window---fully-updates-on-vim-resize │ ├── tests-test_notify.lua---Window---fully-updates-on-vim-resize-002 │ ├── tests-test_notify.lua---Window---fully-updates-on-vim-resize-003 │ ├── tests-test_notify.lua---Window---fully-updates-on-vim-resize-004 │ ├── tests-test_notify.lua---Window---handles-width-computation-for-empty-lines-inside-notification-buffer │ ├── tests-test_notify.lua---Window---respects-'winborder'-option │ ├── tests-test_notify.lua---Window---respects-'winborder'-option-002 │ ├── tests-test_notify.lua---Window---respects-'winborder'-option-003 │ ├── tests-test_notify.lua---Window---respects-`content.format` │ ├── tests-test_notify.lua---Window---respects-`content.sort` │ ├── tests-test_notify.lua---Window---respects-`window.config` │ ├── tests-test_notify.lua---Window---respects-`window.config`-002 │ ├── tests-test_notify.lua---Window---respects-`window.config`-003 │ ├── tests-test_notify.lua---Window---respects-`window.max_width_share` │ ├── tests-test_notify.lua---Window---respects-`window.max_width_share`-002 │ ├── tests-test_notify.lua---Window---respects-`window.max_width_share`-003 │ ├── tests-test_notify.lua---Window---respects-`window.max_width_share`-004 │ ├── tests-test_notify.lua---Window---respects-tabline-statusline-cmdline │ ├── tests-test_notify.lua---Window---respects-tabline-statusline-cmdline-002 │ ├── tests-test_notify.lua---Window---respects-tabline-statusline-cmdline-003 │ ├── tests-test_notify.lua---Window---respects-tabline-statusline-cmdline-004 │ ├── tests-test_notify.lua---Window---respects-tabline-statusline-cmdline-005 │ ├── tests-test_notify.lua---Window---respects-tabline-statusline-cmdline-006 │ ├── tests-test_notify.lua---Window---respects-tabline-statusline-cmdline-007 │ ├── tests-test_notify.lua---Window---respects-tabline-statusline-cmdline-008 │ ├── tests-test_notify.lua---Window---respects-tabline-statusline-cmdline-009 │ ├── tests-test_notify.lua---Window---respects-tabline-statusline-cmdline-010 │ ├── tests-test_notify.lua---Window---shows-start-of-buffer-if-it-does-not-fit-whole │ ├── tests-test_notify.lua---Window---works-with-multiline-messages │ ├── tests-test_notify.lua---Window---wraps-text │ ├── tests-test_notify.lua---Window---wraps-text-002 │ ├── tests-test_notify.lua---add()---allows-empty-string-message │ ├── tests-test_notify.lua---add()---works │ ├── tests-test_notify.lua---clear()---works │ ├── tests-test_notify.lua---clear()---works-002 │ ├── tests-test_notify.lua---make_notify()---works │ ├── tests-test_notify.lua---refresh()---respects-`vim.{g,b}.mininotify_disable`---test-+-args-{-'b'-} │ ├── tests-test_notify.lua---refresh()---respects-`vim.{g,b}.mininotify_disable`---test-+-args-{-'b'-}-002 │ ├── tests-test_notify.lua---refresh()---respects-`vim.{g,b}.mininotify_disable`---test-+-args-{-'b'-}-003 │ ├── tests-test_notify.lua---refresh()---respects-`vim.{g,b}.mininotify_disable`---test-+-args-{-'g'-} │ ├── tests-test_notify.lua---refresh()---respects-`vim.{g,b}.mininotify_disable`---test-+-args-{-'g'-}-002 │ ├── tests-test_notify.lua---refresh()---respects-`vim.{g,b}.mininotify_disable`---test-+-args-{-'g'-}-003 │ ├── tests-test_notify.lua---remove()---works │ ├── tests-test_notify.lua---remove()---works-002 │ ├── tests-test_notify.lua---remove()---works-with-several-active-notifications │ ├── tests-test_notify.lua---remove()---works-with-several-active-notifications-002 │ ├── tests-test_notify.lua---show_history()---respects-`content.format` │ ├── tests-test_notify.lua---show_history()---reuses-history-buffer │ ├── tests-test_notify.lua---show_history()---shows-all-notifications │ ├── tests-test_notify.lua---show_history()---sorts-by-update-time │ ├── tests-test_notify.lua---show_history()---works │ ├── tests-test_notify.lua---update()---works │ ├── tests-test_notify.lua---update()---works-002 │ ├── tests-test_operators.lua---Exchange---can-be-canceled │ ├── tests-test_operators.lua---Exchange---can-be-canceled-002 │ ├── tests-test_operators.lua---Exchange---correctly-highlights-first-step-with-'selection=exclusive' │ ├── tests-test_operators.lua---Exchange---highlights-first-step---test-+-args-{-'blockwise'-} │ ├── tests-test_operators.lua---Exchange---highlights-first-step---test-+-args-{-'charwise'-} │ ├── tests-test_operators.lua---Exchange---highlights-first-step---test-+-args-{-'linewise'-} │ ├── tests-test_operators.lua---Exchange---works-with-multibyte-characters │ ├── tests-test_operators.lua---Exchange---works-with-multibyte-characters-002 │ ├── tests-test_operators.lua---Exchange---works-with-multibyte-characters-003 │ ├── tests-test_operators.lua---Exchange---works-with-multibyte-characters-004 │ ├── tests-test_operators.lua---Exchange---works-with-multibyte-characters-005 │ ├── tests-test_operators.lua---Multiply---works-with-`cmdheight=0` │ ├── tests-test_operators.lua---Multiply---works-with-`cmdheight=0`-002 │ ├── tests-test_operators.lua---Replace---works-with-`cmdheight=0` │ ├── tests-test_operators.lua---Replace---works-with-`cmdheight=0`-002 │ ├── tests-test_pairs.lua----BS--action---works │ ├── tests-test_pick.lua----Pick---has-proper-complete │ ├── tests-test_pick.lua----Pick---has-proper-complete-002 │ ├── tests-test_pick.lua----Pick---has-proper-complete-003 │ ├── tests-test_pick.lua----Pick---works │ ├── tests-test_pick.lua----Pick---works-002 │ ├── tests-test_pick.lua---Caret---moves-by-query-parts │ ├── tests-test_pick.lua---Caret---moves-by-query-parts-002 │ ├── tests-test_pick.lua---Caret---moves-by-query-parts-003 │ ├── tests-test_pick.lua---Caret---works │ ├── tests-test_pick.lua---Caret---works-002 │ ├── tests-test_pick.lua---Caret---works-003 │ ├── tests-test_pick.lua---Choose---works-for-split-tab-variations │ ├── tests-test_pick.lua---Choose---works-for-split-tab-variations-002 │ ├── tests-test_pick.lua---Choose---works-for-split-tab-variations-003 │ ├── tests-test_pick.lua---Info-view---is-updated-after-moving-marking-current-item │ ├── tests-test_pick.lua---Info-view---is-updated-after-moving-marking-current-item-002 │ ├── tests-test_pick.lua---Info-view---is-updated-after-moving-marking-current-item-003 │ ├── tests-test_pick.lua---Info-view---is-updated-after-moving-marking-current-item-004 │ ├── tests-test_pick.lua---Info-view---respects-custom-mappings │ ├── tests-test_pick.lua---Info-view---supports-vertical-and-horizontal-scroll │ ├── tests-test_pick.lua---Info-view---supports-vertical-and-horizontal-scroll-002 │ ├── tests-test_pick.lua---Info-view---supports-vertical-and-horizontal-scroll-003 │ ├── tests-test_pick.lua---Info-view---supports-vertical-and-horizontal-scroll-004 │ ├── tests-test_pick.lua---Info-view---works │ ├── tests-test_pick.lua---Main-view---properly-computes-items-range-to-show │ ├── tests-test_pick.lua---Main-view---properly-computes-items-range-to-show-002 │ ├── tests-test_pick.lua---Main-view---properly-computes-items-range-to-show-003 │ ├── tests-test_pick.lua---Main-view---properly-computes-items-range-to-show-004 │ ├── tests-test_pick.lua---Main-view---properly-computes-items-range-to-show-005 │ ├── tests-test_pick.lua---Main-view---properly-computes-items-range-to-show-006 │ ├── tests-test_pick.lua---Main-view---properly-computes-items-range-to-show-007 │ ├── tests-test_pick.lua---Main-view---properly-computes-items-range-to-show-008 │ ├── tests-test_pick.lua---Main-view---properly-computes-items-range-to-show-009 │ ├── tests-test_pick.lua---Main-view---properly-computes-items-range-to-show-010 │ ├── tests-test_pick.lua---Main-view---properly-computes-items-range-to-show-011 │ ├── tests-test_pick.lua---Main-view---properly-computes-items-range-to-show-012 │ ├── tests-test_pick.lua---Main-view---properly-computes-items-range-to-show-013 │ ├── tests-test_pick.lua---Main-view---properly-computes-items-range-to-show-014 │ ├── tests-test_pick.lua---Main-view---properly-computes-items-range-to-show-015 │ ├── tests-test_pick.lua---Main-view---properly-computes-items-range-to-show-016 │ ├── tests-test_pick.lua---Main-view---properly-computes-items-range-to-show-017 │ ├── tests-test_pick.lua---Main-view---properly-computes-items-range-to-show-018 │ ├── tests-test_pick.lua---Main-view---properly-computes-items-range-to-show-019 │ ├── tests-test_pick.lua---Main-view---properly-computes-items-range-to-show-020 │ ├── tests-test_pick.lua---Main-view---properly-computes-items-range-to-show-021 │ ├── tests-test_pick.lua---Main-view---properly-computes-items-range-to-show-022 │ ├── tests-test_pick.lua---Main-view---properly-computes-items-range-to-show-023 │ ├── tests-test_pick.lua---Main-view---properly-computes-items-range-to-show-024 │ ├── tests-test_pick.lua---Main-view---properly-computes-items-range-to-show-025 │ ├── tests-test_pick.lua---Main-view---shows-marked-items-across-queries │ ├── tests-test_pick.lua---Main-view---shows-marked-items-across-queries-002 │ ├── tests-test_pick.lua---Main-view---supports-horizontal-scroll │ ├── tests-test_pick.lua---Main-view---supports-horizontal-scroll-002 │ ├── tests-test_pick.lua---Main-view---supports-horizontal-scroll-003 │ ├── tests-test_pick.lua---Main-view---supports-horizontal-scroll-004 │ ├── tests-test_pick.lua---Main-view---supports-horizontal-scroll-005 │ ├── tests-test_pick.lua---Main-view---supports-horizontal-scroll-006 │ ├── tests-test_pick.lua---Main-view---works-with-`content_from_bottom`=true │ ├── tests-test_pick.lua---Main-view---works-with-`content_from_bottom`=true-002 │ ├── tests-test_pick.lua---Main-view---works-with-`content_from_bottom`=true-003 │ ├── tests-test_pick.lua---Main-view---works-with-`content_from_bottom`=true-004 │ ├── tests-test_pick.lua---Main-view---works-with-`content_from_bottom`=true-005 │ ├── tests-test_pick.lua---Main-view---works-with-`content_from_bottom`=true-006 │ ├── tests-test_pick.lua---Main-view---works-with-`content_from_bottom`=true-007 │ ├── tests-test_pick.lua---Main-view---works-with-`content_from_bottom`=true-008 │ ├── tests-test_pick.lua---Main-view---works-with-`content_from_bottom`=true-009 │ ├── tests-test_pick.lua---Main-view---works-with-`content_from_bottom`=true-010 │ ├── tests-test_pick.lua---Mark---works-without-items-set │ ├── tests-test_pick.lua---Matching---dedicated-event-can-update-window-config │ ├── tests-test_pick.lua---Matching---dedicated-event-can-update-window-config-002 │ ├── tests-test_pick.lua---Matching---dedicated-event-can-update-window-config-003 │ ├── tests-test_pick.lua---Matching---dedicated-event-can-update-window-config-004 │ ├── tests-test_pick.lua---Move---works-when-no-items-are-set │ ├── tests-test_pick.lua---Overall-view---adjusts-dimensions-respecting-border │ ├── tests-test_pick.lua---Overall-view---adjusts-dimensions-respecting-border-002 │ ├── tests-test_pick.lua---Overall-view---adjusts-dimensions-respecting-border-003 │ ├── tests-test_pick.lua---Overall-view---adjusts-dimensions-respecting-border-004 │ ├── tests-test_pick.lua---Overall-view---adjusts-dimensions-respecting-border-005 │ ├── tests-test_pick.lua---Overall-view---adjusts-dimensions-respecting-border-006 │ ├── tests-test_pick.lua---Overall-view---adjusts-dimensions-respecting-border-007 │ ├── tests-test_pick.lua---Overall-view---adjusts-dimensions-respecting-border-008 │ ├── tests-test_pick.lua---Overall-view---adjusts-dimensions-respecting-border-009 │ ├── tests-test_pick.lua---Overall-view---adjusts-dimensions-respecting-border-010 │ ├── tests-test_pick.lua---Overall-view---adjusts-dimensions-respecting-border-011 │ ├── tests-test_pick.lua---Overall-view---adjusts-dimensions-respecting-border-012 │ ├── tests-test_pick.lua---Overall-view---adjusts-dimensions-respecting-border-013 │ ├── tests-test_pick.lua---Overall-view---adjusts-dimensions-respecting-border-014 │ ├── tests-test_pick.lua---Overall-view---adjusts-dimensions-respecting-border-015 │ ├── tests-test_pick.lua---Overall-view---adjusts-dimensions-respecting-border-016 │ ├── tests-test_pick.lua---Overall-view---allows-'none'-as-border │ ├── tests-test_pick.lua---Overall-view---allows-very-large-dimensions │ ├── tests-test_pick.lua---Overall-view---correctly-infers-footer-empty-space │ ├── tests-test_pick.lua---Overall-view---correctly-infers-footer-empty-space-002 │ ├── tests-test_pick.lua---Overall-view---correctly-infers-footer-empty-space-003 │ ├── tests-test_pick.lua---Overall-view---correctly-infers-footer-empty-space-004 │ ├── tests-test_pick.lua---Overall-view---does-not-show-footer-if-items-are-not-set │ ├── tests-test_pick.lua---Overall-view---is-shown-over-number-and-sign-columns │ ├── tests-test_pick.lua---Overall-view---respects-'winborder'-option │ ├── tests-test_pick.lua---Overall-view---respects-'winborder'-option-002 │ ├── tests-test_pick.lua---Overall-view---respects-'winborder'-option-003 │ ├── tests-test_pick.lua---Overall-view---respects-'winborder'-option-004 │ ├── tests-test_pick.lua---Overall-view---respects-`options.content_from_bottom`-with-footer │ ├── tests-test_pick.lua---Overall-view---respects-tabline,-statusline,-'cmdheight' │ ├── tests-test_pick.lua---Overall-view---respects-tabline,-statusline,-'cmdheight'-002 │ ├── tests-test_pick.lua---Overall-view---respects-tabline,-statusline,-'cmdheight'-003 │ ├── tests-test_pick.lua---Overall-view---respects-tabline,-statusline,-'cmdheight'-004 │ ├── tests-test_pick.lua---Overall-view---respects-tabline,-statusline,-'cmdheight'-005 │ ├── tests-test_pick.lua---Overall-view---respects-tabline,-statusline,-'cmdheight'-006 │ ├── tests-test_pick.lua---Overall-view---sanitizes-picker-name │ ├── tests-test_pick.lua---Overall-view---sanitizes-picker-name-002 │ ├── tests-test_pick.lua---Overall-view---shows-prompt │ ├── tests-test_pick.lua---Overall-view---shows-prompt-002 │ ├── tests-test_pick.lua---Overall-view---shows-prompt-003 │ ├── tests-test_pick.lua---Overall-view---shows-prompt-004 │ ├── tests-test_pick.lua---Overall-view---shows-prompt-005 │ ├── tests-test_pick.lua---Overall-view---truncates-footer │ ├── tests-test_pick.lua---Overall-view---truncates-footer-002 │ ├── tests-test_pick.lua---Overall-view---truncates-footer-003 │ ├── tests-test_pick.lua---Overall-view---truncates-prompt │ ├── tests-test_pick.lua---Overall-view---truncates-prompt-002 │ ├── tests-test_pick.lua---Overall-view---truncates-prompt-003 │ ├── tests-test_pick.lua---Overall-view---truncates-prompt-004 │ ├── tests-test_pick.lua---Overall-view---truncates-prompt-005 │ ├── tests-test_pick.lua---Overall-view---truncates-prompt-006 │ ├── tests-test_pick.lua---Overall-view---truncates-prompt-007 │ ├── tests-test_pick.lua---Overall-view---truncates-prompt-008 │ ├── tests-test_pick.lua---Overall-view---truncates-prompt-009 │ ├── tests-test_pick.lua---Overall-view---truncates-prompt-010 │ ├── tests-test_pick.lua---Overall-view---truncates-prompt-011 │ ├── tests-test_pick.lua---Overall-view---truncates-prompt-012 │ ├── tests-test_pick.lua---Overall-view---truncates-prompt-013 │ ├── tests-test_pick.lua---Overall-view---uses-footer-for-extra-info │ ├── tests-test_pick.lua---Overall-view---uses-footer-for-extra-info-002 │ ├── tests-test_pick.lua---Overall-view---uses-footer-for-extra-info-003 │ ├── tests-test_pick.lua---Overall-view---uses-footer-for-extra-info-004 │ ├── tests-test_pick.lua---Overall-view---uses-footer-for-extra-info-005 │ ├── tests-test_pick.lua---Overall-view---uses-footer-for-extra-info-006 │ ├── tests-test_pick.lua---Overall-view---works-with-small-available-dimensions │ ├── tests-test_pick.lua---Paste---works │ ├── tests-test_pick.lua---Paste---works-002 │ ├── tests-test_pick.lua---Paste---works-003 │ ├── tests-test_pick.lua---Preview---does-explicit-redraw-several-times │ ├── tests-test_pick.lua---Preview---does-explicit-redraw-several-times-002 │ ├── tests-test_pick.lua---Preview---is-updated-after-moving-current-item │ ├── tests-test_pick.lua---Preview---is-updated-after-moving-current-item-002 │ ├── tests-test_pick.lua---Preview---respects-global-value-of-'list'-and-'listchars'-option │ ├── tests-test_pick.lua---Preview---respects-global-value-of-'list'-and-'listchars'-option-002 │ ├── tests-test_pick.lua---Preview---respects-global-value-of-'list'-and-'listchars'-option-003 │ ├── tests-test_pick.lua---Preview---respects-global-value-of-'list'-and-'listchars'-option-004 │ ├── tests-test_pick.lua---Preview---supports-vertical-and-horizontal-scroll │ ├── tests-test_pick.lua---Preview---supports-vertical-and-horizontal-scroll-002 │ ├── tests-test_pick.lua---Preview---supports-vertical-and-horizontal-scroll-003 │ ├── tests-test_pick.lua---Preview---supports-vertical-and-horizontal-scroll-004 │ ├── tests-test_pick.lua---Preview---works │ ├── tests-test_pick.lua---Refine---works │ ├── tests-test_pick.lua---Refine---works-002 │ ├── tests-test_pick.lua---Refine---works-003 │ ├── tests-test_pick.lua---Refine---works-when-no-items-are-set │ ├── tests-test_pick.lua---builtin.buffers()---respects-`local_opts.include_current` │ ├── tests-test_pick.lua---builtin.buffers()---respects-`local_opts.include_unlisted` │ ├── tests-test_pick.lua---builtin.buffers()---respects-`source.show`-from-config │ ├── tests-test_pick.lua---builtin.buffers()---works │ ├── tests-test_pick.lua---builtin.files()---respects-`source.show`-from-config │ ├── tests-test_pick.lua---builtin.files()---works │ ├── tests-test_pick.lua---builtin.grep()---respects-`source.show`-from-config │ ├── tests-test_pick.lua---builtin.grep()---works │ ├── tests-test_pick.lua---builtin.grep()---works-002 │ ├── tests-test_pick.lua---builtin.grep_live()---has-custom-'add-glob'-mapping │ ├── tests-test_pick.lua---builtin.grep_live()---respects-`source.show`-from-config │ ├── tests-test_pick.lua---builtin.grep_live()---works │ ├── tests-test_pick.lua---builtin.help()---handles-consecutive-applications │ ├── tests-test_pick.lua---builtin.help()---has-proper-preview │ ├── tests-test_pick.lua---builtin.help()---works │ ├── tests-test_pick.lua---builtin.help()---works-002 │ ├── tests-test_pick.lua---builtin.help()---works-for-help-tags-with-special-characters │ ├── tests-test_pick.lua---builtin.help()---works-when-help-window-is-already-opened │ ├── tests-test_pick.lua---builtin.help()---works-with-`builtin.resume()` │ ├── tests-test_pick.lua---builtin.help()---works-with-`builtin.resume()`-002 │ ├── tests-test_pick.lua---builtin.resume()---works │ ├── tests-test_pick.lua---default_match()---works-with-active-picker │ ├── tests-test_pick.lua---default_match()---works-with-active-picker-002 │ ├── tests-test_pick.lua---default_preview()---can-be-used-in-outside-preview-window │ ├── tests-test_pick.lua---default_preview()---does-not-highlight-big-files │ ├── tests-test_pick.lua---default_preview()---does-not-highlight-big-files-002 │ ├── tests-test_pick.lua---default_preview()---has-fallback │ ├── tests-test_pick.lua---default_preview()---has-fallback-002 │ ├── tests-test_pick.lua---default_preview()---has-syntax-highlighting-in-buffer │ ├── tests-test_pick.lua---default_preview()---has-syntax-highlighting-in-buffer-002 │ ├── tests-test_pick.lua---default_preview()---has-syntax-highlighting-in-file-path │ ├── tests-test_pick.lua---default_preview()---has-syntax-highlighting-in-file-path-002 │ ├── tests-test_pick.lua---default_preview()---loads-context-in-buffer │ ├── tests-test_pick.lua---default_preview()---loads-context-in-buffer-002 │ ├── tests-test_pick.lua---default_preview()---loads-context-in-buffer-003 │ ├── tests-test_pick.lua---default_preview()---loads-context-in-file-path │ ├── tests-test_pick.lua---default_preview()---loads-context-in-file-path-002 │ ├── tests-test_pick.lua---default_preview()---loads-context-in-file-path-003 │ ├── tests-test_pick.lua---default_preview()---respects-`opts.line_position`---1-+-args-{-'bottom'-} │ ├── tests-test_pick.lua---default_preview()---respects-`opts.line_position`---1-+-args-{-'bottom'-}-002 │ ├── tests-test_pick.lua---default_preview()---respects-`opts.line_position`---1-+-args-{-'center'-} │ ├── tests-test_pick.lua---default_preview()---respects-`opts.line_position`---1-+-args-{-'center'-}-002 │ ├── tests-test_pick.lua---default_preview()---respects-`opts.line_position`---1-+-args-{-'top'-} │ ├── tests-test_pick.lua---default_preview()---respects-`opts.line_position`---1-+-args-{-'top'-}-002 │ ├── tests-test_pick.lua---default_preview()---respects-`opts.n_context_lines` │ ├── tests-test_pick.lua---default_preview()---respects-`opts.n_context_lines`-002 │ ├── tests-test_pick.lua---default_preview()---respects-`source.cwd` │ ├── tests-test_pick.lua---default_preview()---shows-line-in-buffer │ ├── tests-test_pick.lua---default_preview()---shows-line-in-file-path │ ├── tests-test_pick.lua---default_preview()---shows-line-in-file-path-002 │ ├── tests-test_pick.lua---default_preview()---shows-position-in-buffer │ ├── tests-test_pick.lua---default_preview()---shows-position-in-file-path │ ├── tests-test_pick.lua---default_preview()---shows-position-in-file-path-002 │ ├── tests-test_pick.lua---default_preview()---shows-region-in-buffer │ ├── tests-test_pick.lua---default_preview()---shows-region-in-buffer-002 │ ├── tests-test_pick.lua---default_preview()---shows-region-in-file-path │ ├── tests-test_pick.lua---default_preview()---shows-region-in-file-path-002 │ ├── tests-test_pick.lua---default_preview()---works │ ├── tests-test_pick.lua---default_preview()---works-for-URI-path │ ├── tests-test_pick.lua---default_preview()---works-for-buffer │ ├── tests-test_pick.lua---default_preview()---works-for-buffer-002 │ ├── tests-test_pick.lua---default_preview()---works-for-buffer-003 │ ├── tests-test_pick.lua---default_preview()---works-for-buffer-004 │ ├── tests-test_pick.lua---default_preview()---works-for-buffer-005 │ ├── tests-test_pick.lua---default_preview()---works-for-directory-path │ ├── tests-test_pick.lua---default_preview()---works-for-directory-path-002 │ ├── tests-test_pick.lua---default_preview()---works-for-file-path │ ├── tests-test_pick.lua---default_preview()---works-for-file-path-002 │ ├── tests-test_pick.lua---default_preview()---works-for-file-path-003 │ ├── tests-test_pick.lua---default_preview()---works-for-file-path-004 │ ├── tests-test_pick.lua---default_preview()---works-for-file-path-with-tilde │ ├── tests-test_pick.lua---default_preview()---works-for-relative-file-path │ ├── tests-test_pick.lua---default_preview()---works-for-relative-file-path-002 │ ├── tests-test_pick.lua---default_preview()---works-without-active-picker │ ├── tests-test_pick.lua---default_preview()---works-without-active-picker-002 │ ├── tests-test_pick.lua---default_show()---handles-edge-cases │ ├── tests-test_pick.lua---default_show()---handles-query-similar-to-`default_match` │ ├── tests-test_pick.lua---default_show()---handles-query-similar-to-`default_match`-002 │ ├── tests-test_pick.lua---default_show()---handles-query-similar-to-`default_match`-003 │ ├── tests-test_pick.lua---default_show()---handles-query-similar-to-`default_match`-004 │ ├── tests-test_pick.lua---default_show()---handles-query-similar-to-`default_match`-005 │ ├── tests-test_pick.lua---default_show()---handles-stritems-with-non-trivial-whitespace │ ├── tests-test_pick.lua---default_show()---respects-'ignorecase'-'smartcase' │ ├── tests-test_pick.lua---default_show()---respects-'ignorecase'-'smartcase'-002 │ ├── tests-test_pick.lua---default_show()---respects-'ignorecase'-'smartcase'-003 │ ├── tests-test_pick.lua---default_show()---respects-'ignorecase'-'smartcase'-004 │ ├── tests-test_pick.lua---default_show()---respects-'ignorecase'-'smartcase'-005 │ ├── tests-test_pick.lua---default_show()---respects-'ignorecase'-'smartcase'-006 │ ├── tests-test_pick.lua---default_show()---respects-`opts.icons` │ ├── tests-test_pick.lua---default_show()---respects-`opts.icons`-002 │ ├── tests-test_pick.lua---default_show()---respects-`opts.icons`-003 │ ├── tests-test_pick.lua---default_show()---respects-`opts.show_icons` │ ├── tests-test_pick.lua---default_show()---respects-`opts.show_icons`-002 │ ├── tests-test_pick.lua---default_show()---respects-`opts.show_icons`-003 │ ├── tests-test_pick.lua---default_show()---respects-`opts.show_icons`-004 │ ├── tests-test_pick.lua---default_show()---shows-best-match │ ├── tests-test_pick.lua---default_show()---shows-best-match-002 │ ├── tests-test_pick.lua---default_show()---works │ ├── tests-test_pick.lua---default_show()---works-with-multibyte-characters │ ├── tests-test_pick.lua---default_show()---works-with-multibyte-characters-002 │ ├── tests-test_pick.lua---default_show()---works-with-non-single-char-entries-queries │ ├── tests-test_pick.lua---default_show()---works-with-non-single-char-entries-queries-002 │ ├── tests-test_pick.lua---default_show()---works-with-non-single-char-entries-queries-003 │ ├── tests-test_pick.lua---default_show()---works-without-active-picker │ ├── tests-test_pick.lua---default_show()---works-without-active-picker-002 │ ├── tests-test_pick.lua---refresh()---is-called-on-`VimResized` │ ├── tests-test_pick.lua---refresh()---is-called-on-`VimResized`-002 │ ├── tests-test_pick.lua---refresh()---recomputes-window-config │ ├── tests-test_pick.lua---refresh()---recomputes-window-config-002 │ ├── tests-test_pick.lua---refresh()---works │ ├── tests-test_pick.lua---refresh()---works-002 │ ├── tests-test_pick.lua---set_picker_items()---recomputes-visible-range │ ├── tests-test_pick.lua---set_picker_match_inds()---can-set-current-match-index │ ├── tests-test_pick.lua---set_picker_match_inds()---can-set-marked-match-indexes │ ├── tests-test_pick.lua---set_picker_match_inds()---can-set-marked-match-indexes-002 │ ├── tests-test_pick.lua---set_picker_match_inds()---works │ ├── tests-test_pick.lua---set_picker_opts()---works │ ├── tests-test_pick.lua---set_picker_opts()---works-002 │ ├── tests-test_pick.lua---set_picker_opts()---works-003 │ ├── tests-test_pick.lua---set_picker_query()---works │ ├── tests-test_pick.lua---start()---can-be-started-without-explicit-items │ ├── tests-test_pick.lua---start()---correctly-computes-stritems │ ├── tests-test_pick.lua---start()---respects-`options.content_from_bottom` │ ├── tests-test_pick.lua---start()---respects-`source.items` │ ├── tests-test_pick.lua---start()---respects-`source.items`-002 │ ├── tests-test_pick.lua---start()---respects-`source.items`-003 │ ├── tests-test_pick.lua---start()---respects-`source.items`-004 │ ├── tests-test_pick.lua---start()---respects-`source.match` │ ├── tests-test_pick.lua---start()---respects-`source.name` │ ├── tests-test_pick.lua---start()---respects-`source.preview` │ ├── tests-test_pick.lua---start()---respects-`source.preview`-002 │ ├── tests-test_pick.lua---start()---respects-`source.show` │ ├── tests-test_pick.lua---start()---respects-`source.show`-002 │ ├── tests-test_pick.lua---start()---respects-`vim.b.minipick_config` │ ├── tests-test_pick.lua---start()---respects-`window.config` │ ├── tests-test_pick.lua---start()---respects-`window.config`-002 │ ├── tests-test_pick.lua---start()---respects-`window.prompt_caret` │ ├── tests-test_pick.lua---start()---respects-`window.prompt_caret`-002 │ ├── tests-test_pick.lua---start()---respects-`window.prompt_prefix` │ ├── tests-test_pick.lua---start()---respects-`window.prompt_prefix`-002 │ ├── tests-test_pick.lua---start()---respects-`window.prompt_prefix`-003 │ ├── tests-test_pick.lua---start()---respects-`window.prompt_prefix`-004 │ ├── tests-test_pick.lua---start()---respects-global-config │ ├── tests-test_pick.lua---start()---stops-currently-active-picker │ ├── tests-test_pick.lua---start()---stops-improperly-aborted-previous-picker │ ├── tests-test_pick.lua---start()---stops-improperly-aborted-previous-picker-002 │ ├── tests-test_pick.lua---start()---tracks-lost-focus │ ├── tests-test_pick.lua---start()---tracks-lost-focus-002 │ ├── tests-test_pick.lua---start()---tracks-lost-focus-003 │ ├── tests-test_pick.lua---start()---works │ ├── tests-test_pick.lua---start()---works-002 │ ├── tests-test_pick.lua---start()---works-on-Neovim-0.9 │ ├── tests-test_pick.lua---start()---works-on-Neovim-0.9-002 │ ├── tests-test_pick.lua---start()---works-with-window-footer │ ├── tests-test_pick.lua---start()---works-with-window-footer-002 │ ├── tests-test_pick.lua---stop()---works │ ├── tests-test_pick.lua---stop()---works-002 │ ├── tests-test_pick.lua---ui_select()---respects-`opts.preview_item` │ ├── tests-test_pick.lua---ui_select()---respects-`start_opts` │ ├── tests-test_pick.lua---ui_select()---shows-only-original-item-in-preview │ ├── tests-test_pick.lua---ui_select()---works │ ├── tests-test_snippets.lua---Interaction-with-built-in-completion---no-affect-of-'exausted'-popup-during-jump │ ├── tests-test_snippets.lua---Interaction-with-built-in-completion---squashed-tabstops │ ├── tests-test_snippets.lua---Interaction-with-built-in-completion---squashed-tabstops-002 │ ├── tests-test_snippets.lua---Session---autostop---is-not-triggered-if-final-tabstop-is-not-current │ ├── tests-test_snippets.lua---Session---choices---are-always-shown-all-at-once │ ├── tests-test_snippets.lua---Session---choices---are-always-shown-all-at-once-002 │ ├── tests-test_snippets.lua---Session---choices---are-always-shown-all-at-once-003 │ ├── tests-test_snippets.lua---Session---choices---work-with-default-'completeopt' │ ├── tests-test_snippets.lua---Session---choices---work-with-default-'completeopt'-002 │ ├── tests-test_snippets.lua---Session---choices---works │ ├── tests-test_snippets.lua---Session---choices---works-002 │ ├── tests-test_snippets.lua---Session---does-not-show-'Pattern-not-found'-message │ ├── tests-test_snippets.lua---Session---highlighting---uses-same-highlighting-for-whole-placeholder-for-current-tabstop │ ├── tests-test_snippets.lua---Session---highlighting---uses-same-highlighting-for-whole-placeholder-for-current-tabstop-002 │ ├── tests-test_snippets.lua---Session---highlighting---uses-same-highlighting-for-whole-placeholder-for-current-tabstop-003 │ ├── tests-test_snippets.lua---Session---linked-tabstops---are-updated-immediately-when-typing │ ├── tests-test_snippets.lua---Session---linked-tabstops---are-updated-immediately-when-typing-002 │ ├── tests-test_snippets.lua---Session---linked-tabstops---are-updated-immediately-when-typing-003 │ ├── tests-test_snippets.lua---Session---linked-tabstops---jumps-to-the-first-node │ ├── tests-test_snippets.lua---Session---linked-tabstops---jumps-to-the-first-node-002 │ ├── tests-test_snippets.lua---Session---linked-tabstops---jumps-to-the-first-node-003 │ ├── tests-test_snippets.lua---Session---linked-tabstops---validates-that-session-data-is-valid │ ├── tests-test_snippets.lua---Session---linked-tabstops---validates-that-session-data-is-valid-002 │ ├── tests-test_snippets.lua---Session---nesting---can-be-done-outside-of-current-session-region │ ├── tests-test_snippets.lua---Session---nesting---does-not-nest-if-no-tabstops-in-new-session │ ├── tests-test_snippets.lua---Session---nesting---works-and-triggers-events │ ├── tests-test_snippets.lua---Session---nesting---works-and-triggers-events-002 │ ├── tests-test_snippets.lua---Session---nesting---works-and-triggers-events-003 │ ├── tests-test_snippets.lua---Session---nesting---works-and-triggers-events-004 │ ├── tests-test_snippets.lua---Session---nesting---works-and-triggers-events-005 │ ├── tests-test_snippets.lua---Session---persists-after-`-edit` │ ├── tests-test_snippets.lua---Session---preserves-order-of-'squashed'-empty-tabstops │ ├── tests-test_snippets.lua---Session---preserves-order-of-'squashed'-empty-tabstops-002 │ ├── tests-test_snippets.lua---Session---preserves-order-of-'squashed'-empty-tabstops-003 │ ├── tests-test_snippets.lua---Session---preserves-order-of-'squashed'-empty-tabstops-004 │ ├── tests-test_snippets.lua---Session---preserves-order-of-'squashed'-empty-tabstops-005 │ ├── tests-test_snippets.lua---Tricky-snippets---intertwined-nested-tabstops │ ├── tests-test_snippets.lua---Tricky-snippets---intertwined-nested-tabstops-002 │ ├── tests-test_snippets.lua---Tricky-snippets---intertwined-nested-tabstops-003 │ ├── tests-test_snippets.lua---Tricky-snippets---intertwined-nested-tabstops-004 │ ├── tests-test_snippets.lua---Tricky-snippets---intertwined-nested-tabstops-005 │ ├── tests-test_snippets.lua---Tricky-snippets---intertwined-nested-tabstops-006 │ ├── tests-test_snippets.lua---Tricky-snippets---nested-empty-tabstops │ ├── tests-test_snippets.lua---Tricky-snippets---nested-empty-tabstops,-another │ ├── tests-test_snippets.lua---Tricky-snippets---nested-empty-tabstops,-another-002 │ ├── tests-test_snippets.lua---Tricky-snippets---nested-empty-tabstops,-another-003 │ ├── tests-test_snippets.lua---Tricky-snippets---nested-empty-tabstops,-another-004 │ ├── tests-test_snippets.lua---Tricky-snippets---nested-empty-tabstops,-another-005 │ ├── tests-test_snippets.lua---Tricky-snippets---nested-empty-tabstops,-another-006 │ ├── tests-test_snippets.lua---Tricky-snippets---nested-empty-tabstops-002 │ ├── tests-test_snippets.lua---Tricky-snippets---nested-empty-tabstops-003 │ ├── tests-test_snippets.lua---Tricky-snippets---nested-empty-tabstops-004 │ ├── tests-test_snippets.lua---Tricky-snippets---nested-empty-tabstops-005 │ ├── tests-test_snippets.lua---Tricky-snippets---nested-empty-tabstops-006 │ ├── tests-test_snippets.lua---Tricky-snippets---squashed-linked-empty-consecutive-tabstops │ ├── tests-test_snippets.lua---Tricky-snippets---squashed-linked-empty-consecutive-tabstops-002 │ ├── tests-test_snippets.lua---Tricky-snippets---squashed-linked-empty-consecutive-tabstops-003 │ ├── tests-test_snippets.lua---Tricky-snippets---squashed-linked-empty-consecutive-tabstops-004 │ ├── tests-test_snippets.lua---Tricky-snippets---squashed-linked-empty-consecutive-tabstops-005 │ ├── tests-test_snippets.lua---Tricky-snippets---squashed-linked-empty-interleaving-tabstops │ ├── tests-test_snippets.lua---Tricky-snippets---squashed-linked-empty-interleaving-tabstops-002 │ ├── tests-test_snippets.lua---Tricky-snippets---squashed-linked-empty-interleaving-tabstops-003 │ ├── tests-test_snippets.lua---Tricky-snippets---squashed-linked-empty-interleaving-tabstops-004 │ ├── tests-test_snippets.lua---Tricky-snippets---squashed-linked-empty-interleaving-tabstops-005 │ ├── tests-test_snippets.lua---Tricky-snippets---squashed-linked-tabstops-with-placeholders │ ├── tests-test_snippets.lua---Tricky-snippets---squashed-linked-tabstops-with-placeholders-002 │ ├── tests-test_snippets.lua---Tricky-snippets---squashed-linked-tabstops-with-placeholders-003 │ ├── tests-test_snippets.lua---Various-snippets---placeholders │ ├── tests-test_snippets.lua---Various-snippets---placeholders-002 │ ├── tests-test_snippets.lua---Various-snippets---placeholders-003 │ ├── tests-test_snippets.lua---Various-snippets---placeholders-004 │ ├── tests-test_snippets.lua---Various-snippets---placeholders-005 │ ├── tests-test_snippets.lua---Various-snippets---placeholders-006 │ ├── tests-test_snippets.lua---Various-snippets---placeholders-007 │ ├── tests-test_snippets.lua---Various-snippets---tabstop │ ├── tests-test_snippets.lua---Various-snippets---tabstop-002 │ ├── tests-test_snippets.lua---default_insert()---respects-`opts.empty_tabstop`-and-`opts.empty_tabstop_final` │ ├── tests-test_snippets.lua---default_insert()---respects-`opts.lookup` │ ├── tests-test_snippets.lua---session.stop()---ensures-next-nested-session-is-valid │ ├── tests-test_snippets.lua---session.stop()---works │ ├── tests-test_snippets.lua---session.stop()---works-002 │ ├── tests-test_snippets.lua---session.stop()---works-003 │ ├── tests-test_starter.lua---Default-content---'Recent-files'-section---displays-only-readable-files │ ├── tests-test_starter.lua---Default-content---'Recent-files'-section---present-even-if-no-recent-files │ ├── tests-test_starter.lua---Default-content---'Sessions'-section---present-even-if-no-sessions-detected │ ├── tests-test_starter.lua---Default-content---'Sessions'-section---works │ ├── tests-test_starter.lua---Default-content---computes-`header`-depending-on-time-of-day---test-+-args-{-'00'-} │ ├── tests-test_starter.lua---Default-content---computes-`header`-depending-on-time-of-day---test-+-args-{-'04'-} │ ├── tests-test_starter.lua---Default-content---computes-`header`-depending-on-time-of-day---test-+-args-{-'08'-} │ ├── tests-test_starter.lua---Default-content---computes-`header`-depending-on-time-of-day---test-+-args-{-'12'-} │ ├── tests-test_starter.lua---Default-content---computes-`header`-depending-on-time-of-day---test-+-args-{-'16'-} │ ├── tests-test_starter.lua---Default-content---computes-`header`-depending-on-time-of-day---test-+-args-{-'20'-} │ ├── tests-test_starter.lua---Default-content---works │ ├── tests-test_starter.lua---Highlighting---uses-`MiniStarterItemBullet` │ ├── tests-test_starter.lua---Highlighting---uses-`MiniStarterItemBullet`-002 │ ├── tests-test_starter.lua---Highlighting---works-for-current-item │ ├── tests-test_starter.lua---Highlighting---works-for-current-item-002 │ ├── tests-test_starter.lua---Highlighting---works-for-querying │ ├── tests-test_starter.lua---Highlighting---works-for-querying-002 │ ├── tests-test_starter.lua---Highlighting---works-for-querying-003 │ ├── tests-test_starter.lua---Querying---works-with-`cmdheight=0` │ ├── tests-test_starter.lua---Resize---updates-Starter-buffer │ ├── tests-test_starter.lua---gen_hook---adding_bullet()---respects-`bullet`-argument │ ├── tests-test_starter.lua---gen_hook---adding_bullet()---works │ ├── tests-test_starter.lua---gen_hook---aligning()---handles-small-windows │ ├── tests-test_starter.lua---gen_hook---aligning()---has-output-respecting-`buf_id`-argument │ ├── tests-test_starter.lua---gen_hook---aligning()---has-output-respecting-`buf_id`-argument-002 │ ├── tests-test_starter.lua---gen_hook---aligning()---respects-arguments---test-+-args-{-''center',-'bottom''-} │ ├── tests-test_starter.lua---gen_hook---aligning()---respects-arguments---test-+-args-{-''center',-'center''-} │ ├── tests-test_starter.lua---gen_hook---aligning()---respects-arguments---test-+-args-{-''center',-'top''-} │ ├── tests-test_starter.lua---gen_hook---aligning()---respects-arguments---test-+-args-{-''left',-'bottom''-} │ ├── tests-test_starter.lua---gen_hook---aligning()---respects-arguments---test-+-args-{-''left',-'center''-} │ ├── tests-test_starter.lua---gen_hook---aligning()---respects-arguments---test-+-args-{-''left',-'top''-} │ ├── tests-test_starter.lua---gen_hook---aligning()---respects-arguments---test-+-args-{-''right',-'bottom''-} │ ├── tests-test_starter.lua---gen_hook---aligning()---respects-arguments---test-+-args-{-''right',-'center''-} │ ├── tests-test_starter.lua---gen_hook---aligning()---respects-arguments---test-+-args-{-''right',-'top''-} │ ├── tests-test_starter.lua---gen_hook---aligning()---works │ ├── tests-test_starter.lua---gen_hook---indexing()---respects-arguments---test-+-args-{-''all',-nil'-} │ ├── tests-test_starter.lua---gen_hook---indexing()---respects-arguments---test-+-args-{-''section',-nil'-} │ ├── tests-test_starter.lua---gen_hook---indexing()---respects-arguments---test-+-args-{-'nil,-{-'AAA'-}'-} │ ├── tests-test_starter.lua---gen_hook---indexing()---respects-arguments---test-+-args-{-'nil,-{}'-} │ ├── tests-test_starter.lua---gen_hook---indexing()---works │ ├── tests-test_starter.lua---gen_hook---padding()---respects-arguments---test-+-args-{-'0,-2'-} │ ├── tests-test_starter.lua---gen_hook---padding()---respects-arguments---test-+-args-{-'2,-0'-} │ ├── tests-test_starter.lua---gen_hook---padding()---respects-arguments---test-+-args-{-'2,-2'-} │ ├── tests-test_starter.lua---gen_hook---padding()---works │ ├── tests-test_starter.lua---get_content()---works │ ├── tests-test_starter.lua---open()---respects-`vim.b.ministarter_config` │ ├── tests-test_starter.lua---refresh()---respects-`config.silent` │ ├── tests-test_starter.lua---refresh()---respects-`config.silent`-002 │ ├── tests-test_starter.lua---refresh()---respects-`vim.b.ministarter_config` │ ├── tests-test_starter.lua---refresh()---respects-`vim.b.ministarter_config`-002 │ ├── tests-test_starter.lua---sections---recent_files()---correctly-identifies-files-from-current-directory │ ├── tests-test_starter.lua---sections---recent_files()---respects-`show_path` │ ├── tests-test_starter.lua---sections---recent_files()---respects-files-in-subdirectories │ ├── tests-test_starter.lua---sections---works │ ├── tests-test_statusline.lua---Default-content---active---test-+-args-{-120-} │ ├── tests-test_statusline.lua---Default-content---active---test-+-args-{-39-} │ ├── tests-test_statusline.lua---Default-content---active---test-+-args-{-40-} │ ├── tests-test_statusline.lua---Default-content---active---test-+-args-{-75-} │ ├── tests-test_statusline.lua---Default-content---inactive-is-evaluated-in-the-context-of-its-window │ ├── tests-test_surround.lua---Add-surrounding---respects-`config.silent` │ ├── tests-test_surround.lua---Add-surrounding---shows-reminder-after-one-idle-second │ ├── tests-test_surround.lua---Add-surrounding---shows-reminder-after-one-idle-second-002 │ ├── tests-test_surround.lua---Add-surrounding---works-with-`cmdheight=0` │ ├── tests-test_surround.lua---Add-surrounding---works-with-`cmdheight=0`-002 │ ├── tests-test_surround.lua---Add-surrounding---works-with-`cmdheight=0`-003 │ ├── tests-test_surround.lua---Builtin---Function-call---colors-its-prompts │ ├── tests-test_surround.lua---Builtin---Function-call---colors-its-prompts-002 │ ├── tests-test_surround.lua---Builtin---Tag---colors-its-prompts │ ├── tests-test_surround.lua---Builtin---Tag---colors-its-prompts-002 │ ├── tests-test_surround.lua---Builtin---User-prompt---colors-its-prompts │ ├── tests-test_surround.lua---Builtin---User-prompt---colors-its-prompts-002 │ ├── tests-test_surround.lua---Builtin---User-prompt---colors-its-prompts-003 │ ├── tests-test_surround.lua---Delete-surrounding---respects-`config.silent` │ ├── tests-test_surround.lua---Delete-surrounding---respects-`config.silent`-002 │ ├── tests-test_surround.lua---Delete-surrounding---shows-reminder-after-one-idle-second │ ├── tests-test_surround.lua---Delete-surrounding---shows-reminder-after-one-idle-second-002 │ ├── tests-test_surround.lua---Find-surrounding---shows-reminder-after-one-idle-second │ ├── tests-test_surround.lua---Find-surrounding---shows-reminder-after-one-idle-second-002 │ ├── tests-test_surround.lua---Highlight-surrounding---removes-highlighting-in-correct-buffer │ ├── tests-test_surround.lua---Highlight-surrounding---removes-highlighting-in-correct-buffer-002 │ ├── tests-test_surround.lua---Highlight-surrounding---removes-highlighting-per-line │ ├── tests-test_surround.lua---Highlight-surrounding---removes-highlighting-per-line-002 │ ├── tests-test_surround.lua---Highlight-surrounding---removes-highlighting-per-line-003 │ ├── tests-test_surround.lua---Highlight-surrounding---respects-`config.n_lines` │ ├── tests-test_surround.lua---Highlight-surrounding---respects-`v-count`-for-input-surrounding │ ├── tests-test_surround.lua---Highlight-surrounding---respects-`vim.b.minisurround_config` │ ├── tests-test_surround.lua---Highlight-surrounding---respects-`vim.b.minisurround_config`-002 │ ├── tests-test_surround.lua---Highlight-surrounding---respects-`vim.{g,b}.minisurround_disable`---test-+-args-{-'b'-} │ ├── tests-test_surround.lua---Highlight-surrounding---respects-`vim.{g,b}.minisurround_disable`---test-+-args-{-'g'-} │ ├── tests-test_surround.lua---Highlight-surrounding---works-in-extended-mappings │ ├── tests-test_surround.lua---Highlight-surrounding---works-in-extended-mappings-002 │ ├── tests-test_surround.lua---Highlight-surrounding---works-in-extended-mappings-003 │ ├── tests-test_surround.lua---Highlight-surrounding---works-with-multiline-input-surroundings │ ├── tests-test_surround.lua---Highlight-surrounding---works-with-multiline-input-surroundings-002 │ ├── tests-test_surround.lua---Highlight-surrounding---works-with-multiline-input-surroundings-003 │ ├── tests-test_surround.lua---Highlight-surrounding---works-with-multiline-input-surroundings-004 │ ├── tests-test_surround.lua---Highlight-surrounding---works-without-dot-repeat │ ├── tests-test_surround.lua---Highlight-surrounding---works-without-dot-repeat-002 │ ├── tests-test_surround.lua---Highlight-surrounding---works-without-dot-repeat-003 │ ├── tests-test_surround.lua---Highlight-surrounding---works-without-dot-repeat-004 │ ├── tests-test_surround.lua---Replace-surrounding---respects-`config.silent` │ ├── tests-test_surround.lua---Replace-surrounding---respects-`config.silent`-002 │ ├── tests-test_surround.lua---Replace-surrounding---shows-reminder-after-one-idle-second │ ├── tests-test_surround.lua---Replace-surrounding---shows-reminder-after-one-idle-second-002 │ ├── tests-test_surround.lua---Replace-surrounding---shows-reminder-after-one-idle-second-003 │ ├── tests-test_surround.lua---gen_spec---input---treesitter()---works-with-empty-region │ ├── tests-test_tabline.lua---Screen---works │ ├── tests-test_tabline.lua---Screen---works-002 │ ├── tests-test_tabline.lua---Screen---works-003 │ ├── tests-test_tabline.lua---Screen---works-004 │ ├── tests-test_tabline.lua---Screen---works-005 │ ├── tests-test_test.lua---expect---reference_screenshot()---correctly-infers-reference-path │ ├── tests-test_test.lua---expect---reference_screenshot()---correctly-infers-reference-path-002 │ ├── tests-test_test.lua---expect---reference_screenshot()---correctly-infers-reference-path-004 │ ├── tests-test_test.lua---expect---reference_screenshot()---correctly-sanitizes-path-for-Windows- │ ├── tests-test_test.lua---expect---reference_screenshot()---correctly-sanitizes-path-for-Windows-#2- │ ├── tests-test_test.lua---expect---reference_screenshot()---works-with-multibyte-characters │ ├── tests-test_test.lua---gen_reporter---buffer---test-+-args-{-''-} │ ├── tests-test_test.lua---gen_reporter---buffer---test-+-args-{-'group_depth=2'-} │ ├── tests-test_test.lua---gen_reporter---buffer---test-+-args-{-'window={border='double',title=('a')-rep(200)}'-} │ ├── tests-test_test.lua---gen_reporter---buffer---test-+-args-{-'window={width=0.9-vim.o.columns,col=0.05-vim.o.columns}'-} │ ├── tests-test_test.lua---gen_reporter---buffer---test-+-args-{-'window={width=0.9-vim.o.columns,col=0.05-vim.o.columns}'-}-002 │ ├── tests-test_test.lua---gen_reporter---stdout---test-+-args-{-''-} │ ├── tests-test_test.lua---gen_reporter---stdout---test-+-args-{-'TEST_GROUP_DEPTH=2'-} │ ├── tests-test_test.lua---gen_reporter---stdout---test-+-args-{-'TEST_QUIT_ON_FINISH=false'-} │ ├── tests-test_trailspace.lua---Trailspace-autohighlighting---respects-BufEnter-BufLeave │ ├── tests-test_trailspace.lua---Trailspace-autohighlighting---respects-BufEnter-BufLeave-002 │ ├── tests-test_trailspace.lua---Trailspace-autohighlighting---respects-BufEnter-BufLeave-003 │ ├── tests-test_trailspace.lua---Trailspace-autohighlighting---respects-InsertEnter-InsertLeave │ ├── tests-test_trailspace.lua---Trailspace-autohighlighting---respects-InsertEnter-InsertLeave-002 │ ├── tests-test_trailspace.lua---Trailspace-autohighlighting---respects-InsertEnter-InsertLeave-003 │ ├── tests-test_trailspace.lua---Trailspace-autohighlighting---respects-OptionSet │ ├── tests-test_trailspace.lua---Trailspace-autohighlighting---respects-OptionSet-002 │ ├── tests-test_trailspace.lua---Trailspace-autohighlighting---respects-WinEnter-WinLeave │ ├── tests-test_trailspace.lua---Trailspace-autohighlighting---respects-WinEnter-WinLeave-002 │ ├── tests-test_trailspace.lua---Trailspace-autohighlighting---respects-WinEnter-WinLeave-003 │ ├── tests-test_trailspace.lua---Trailspace-highlighting-on-startup---works │ ├── tests-test_trailspace.lua---highlight()---respects-`config.only_in_normal_buffers`---test-+-args-{-false,-''-} │ ├── tests-test_trailspace.lua---highlight()---respects-`config.only_in_normal_buffers`---test-+-args-{-false,-'help'-} │ ├── tests-test_trailspace.lua---highlight()---respects-`config.only_in_normal_buffers`---test-+-args-{-false,-'nofile'-} │ ├── tests-test_trailspace.lua---highlight()---respects-`config.only_in_normal_buffers`---test-+-args-{-true,-''-} │ ├── tests-test_trailspace.lua---highlight()---respects-`config.only_in_normal_buffers`---test-+-args-{-true,-'help'-} │ ├── tests-test_trailspace.lua---highlight()---respects-`config.only_in_normal_buffers`---test-+-args-{-true,-'nofile'-} │ ├── tests-test_trailspace.lua---highlight()---respects-`vim.b.minitrailspace_config` │ ├── tests-test_trailspace.lua---highlight()---respects-`vim.{g,b}.minitrailspace_disable`---test-+-args-{-'b'-} │ ├── tests-test_trailspace.lua---highlight()---respects-`vim.{g,b}.minitrailspace_disable`---test-+-args-{-'g'-} │ ├── tests-test_trailspace.lua---highlight()---works │ ├── tests-test_trailspace.lua---highlight()---works-002 │ ├── tests-test_trailspace.lua---highlight()---works-after-`clearmatches()` │ ├── tests-test_trailspace.lua---highlight()---works-after-`clearmatches()`-002 │ ├── tests-test_trailspace.lua---highlight()---works-only-in-Normal-mode---test-+-args-{-'-'-} │ ├── tests-test_trailspace.lua---highlight()---works-only-in-Normal-mode---test-+-args-{-'R'-} │ ├── tests-test_trailspace.lua---highlight()---works-only-in-Normal-mode---test-+-args-{-'i'-} │ ├── tests-test_trailspace.lua---highlight()---works-only-in-Normal-mode---test-+-args-{-'v'-} │ ├── tests-test_trailspace.lua---unhighlight()---works │ ├── tests-test_trailspace.lua---unhighlight()---works-002 │ ├── tests-test_trailspace.lua---unhighlight()---works-after-`clearmatches()` │ ├── tests-test_visits.lua---add_label()---asks-user-for-label-if-it-is-not-supplied │ ├── tests-test_visits.lua---add_label()---asks-user-for-label-if-it-is-not-supplied-002 │ ├── tests-test_visits.lua---add_label()---asks-user-for-label-if-it-is-not-supplied-003 │ ├── tests-test_visits.lua---add_label()---works │ ├── tests-test_visits.lua---remove_label()---asks-user-for-label-if-it-is-not-supplied │ ├── tests-test_visits.lua---remove_label()---asks-user-for-label-if-it-is-not-supplied-002 │ ├── tests-test_visits.lua---remove_label()---asks-user-for-label-if-it-is-not-supplied-003 │ └── tests-test_visits.lua---remove_label()---works ├── test_ai.lua ├── test_align.lua ├── test_animate.lua ├── test_base16.lua ├── test_basics.lua ├── test_bracketed.lua ├── test_bufremove.lua ├── test_clue.lua ├── test_cmdline.lua ├── test_colors.lua ├── test_comment.lua ├── test_completion.lua ├── test_cursorword.lua ├── test_deps.lua ├── test_diff.lua ├── test_doc.lua ├── test_extra.lua ├── test_files.lua ├── test_fuzzy.lua ├── test_git.lua ├── test_hipatterns.lua ├── test_hues.lua ├── test_icons.lua ├── test_indentscope.lua ├── test_jump.lua ├── test_jump2d.lua ├── test_keymap.lua ├── test_map.lua ├── test_misc.lua ├── test_move.lua ├── test_notify.lua ├── test_operators.lua ├── test_pairs.lua ├── test_pick.lua ├── test_sessions.lua ├── test_snippets.lua ├── test_splitjoin.lua ├── test_starter.lua ├── test_statusline.lua ├── test_surround.lua ├── test_tabline.lua ├── test_test.lua ├── test_trailspace.lua └── test_visits.lua