No description
Find a file
Barrett Ruth 695ff4aa46
feat: add healthcheck
Problem: users had no way to diagnose why completions were missing or
incomplete.

Solution: add a :checkhealth module that verifies blink.cmp is
installed, tmux is on PATH and responds to list-commands, and man is
available for command descriptions.
2026-02-20 20:18:49 -05:00
.github feat: initial release 2026-02-20 16:55:55 -05:00
lua feat: add healthcheck 2026-02-20 20:18:49 -05:00
spec feat: initial release 2026-02-20 16:55:55 -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 fix: dont commit envrc 2026-02-20 17:22:50 -05:00
.luarc.json feat: initial release 2026-02-20 16:55:55 -05:00
.pre-commit-config.yaml feat: initial release 2026-02-20 16:55:55 -05:00
.prettierignore feat: initial release 2026-02-20 16:55:55 -05:00
.prettierrc feat: initial release 2026-02-20 16:55:55 -05:00
blink-cmp-tmux-scm-1.rockspec feat: initial release 2026-02-20 16:55:55 -05:00
flake.lock feat: initial release 2026-02-20 16:55:55 -05:00
flake.nix feat: initial release 2026-02-20 16:55:55 -05:00
LICENSE feat: initial release 2026-02-20 16:55:55 -05:00
README.md fix(ci): format 2026-02-20 18:39:20 -05:00
selene.toml feat: initial release 2026-02-20 16:55:55 -05:00
stylua.toml feat: initial release 2026-02-20 16:55:55 -05:00
vim.toml feat: initial release 2026-02-20 16:55:55 -05:00

blink-cmp-tmux

Tmux command completion source for blink.cmp.

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

Install via luarocks:

luarocks install blink-cmp-tmux

Or with lazy.nvim:

{
  'saghen/blink.cmp',
  dependencies = {
    'barrettruth/blink-cmp-tmux',
  },
  opts = {
    sources = {
      default = { 'tmux' },
      providers = {
        tmux = {
          name = 'Tmux',
          module = 'blink-cmp-tmux',
        },
      },
    },
  },
}