Tmux command completion source for blink.cmp
  • Lua 81.1%
  • Shell 10.2%
  • Nix 6.5%
  • Just 2.2%
Find a file
Barrett Ruth 468f15f951
All checks were successful
quality / Format (push) Successful in 5s
quality / Lint (push) Successful in 6s
quality / Test (push) Successful in 3s
deploy / LuaRocks (nightly) (push) Successful in 42s
docs: update mirror banner wording (#32)
## Summary
- update the README GitHub mirror banner to the active-development wording
- keep the Forgejo link repo-specific and preserve any existing canonical-link note

## Checks
- git diff --check

Reviewed-on: https://git.barrettruth.com/barrettruth/blink-cmp-tmux/pulls/32
2026-05-05 21:27:42 +00:00
.forgejo docs: add contributing guide (#30) 2026-05-05 17:22:13 +00:00
.github/workflows ci: redirect GitHub PRs to Forgejo (#13) 2026-05-03 15:58:09 +00:00
doc chore: ignore generated vimdoc tags (#31) 2026-05-05 17:51:56 +00:00
lua perf: async parallel cache initialization and remove deepcopy (#6) 2026-02-20 20:39:32 -05:00
spec perf: async parallel cache initialization and remove deepcopy (#6) 2026-02-20 20:39:32 -05:00
.busted feat: initial release 2026-02-20 16:55:55 -05:00
.editorconfig feat: initial release 2026-02-20 16:55:55 -05:00
.gitignore chore: ignore generated vimdoc tags (#31) 2026-05-05 17:51:56 +00:00
.luarc.json ci: migrate to nix 2026-02-23 18:11:47 -05:00
biome.json chore: replace prettier with biome (#10) 2026-04-25 15:59:44 -04:00
blink-cmp-tmux-scm-1.rockspec docs: align rockspec license metadata (#26) 2026-05-04 21:29:30 +00:00
CONTRIBUTING.md docs: add contributing guide (#30) 2026-05-05 17:22:13 +00:00
flake.lock docs: add Forgejo help routing (#28) 2026-05-04 23:30:48 +00:00
flake.nix docs: add Forgejo help routing (#28) 2026-05-04 23:30:48 +00:00
justfile docs: add Forgejo help routing (#28) 2026-05-04 23:30:48 +00:00
LICENSE chore: switch license to GPL 2026-04-29 18:19:03 -04:00
README.md docs: update mirror banner wording (#32) 2026-05-05 21:27:42 +00:00
selene.toml ci: migrate to nix 2026-02-23 18:11:47 -05:00
stylua.toml feat: initial release 2026-02-20 16:55:55 -05:00
vim.yaml ci: migrate to nix 2026-02-23 18:11:47 -05:00

blink-cmp-tmux

Tmux command completion source for blink.cmp.

Note

Due to GitHub's historic unreliability, active development is hosted on Forgejo. GitHub is maintained as a read-only mirror. See :help blink-cmp-tmux-forgejo for canonical project links.

blink-cmp-tmux preview

Features

  • Completes tmux commands with full usage signatures
  • Includes alias information for commands
  • Shows man page descriptions in documentation

Requirements

Installation

With vim.pack (Neovim 0.12+):

vim.pack.add({
  'https://git.barrettruth.com/barrettruth/blink-cmp-tmux',
})

Or via luarocks:

luarocks install blink-cmp-tmux

Configure blink.cmp:

require('blink.cmp').setup({
  sources = {
    default = { 'tmux' },
    providers = {
      tmux = {
        name = 'Tmux',
        module = 'blink-cmp-tmux',
      },
    },
  },
})