gitextract_lgngfsi1/ ├── .editorconfig ├── .github/ │ ├── .release-please-manifest.json │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.yml │ │ ├── config.yml │ │ └── feature_request.yml │ ├── PULL_REQUEST_TEMPLATE.md │ ├── dependabot.yml │ ├── release-please-config.json │ └── workflows/ │ ├── ci.yml │ ├── labeler.yml │ ├── pr.yml │ ├── stale.yml │ └── update.yml ├── .gitignore ├── .lua-format ├── .markdownlint-cli2.yaml ├── .neoconf.json ├── CHANGELOG.md ├── LICENSE ├── NEWS.md ├── README.md ├── TODO.md ├── doc/ │ └── which-key.nvim.txt ├── lua/ │ └── which-key/ │ ├── buf.lua │ ├── colors.lua │ ├── config.lua │ ├── docs.lua │ ├── extras.lua │ ├── health.lua │ ├── icons.lua │ ├── init.lua │ ├── layout.lua │ ├── mappings.lua │ ├── migrate.lua │ ├── node.lua │ ├── plugins/ │ │ ├── init.lua │ │ ├── marks.lua │ │ ├── presets.lua │ │ ├── registers.lua │ │ └── spelling.lua │ ├── presets.lua │ ├── state.lua │ ├── text.lua │ ├── tree.lua │ ├── triggers.lua │ ├── types.lua │ ├── util.lua │ ├── view.lua │ └── win.lua ├── plugin/ │ └── which-key.lua ├── scripts/ │ ├── docs │ └── test ├── selene.toml ├── stylua.toml ├── tests/ │ ├── buf_spec.lua │ ├── helpers.lua │ ├── layout_spec.lua │ ├── mappings_spec.lua │ ├── minit.lua │ └── util_spec.lua └── vim.yml