Tmux command completion source for blink.cmp
  • Lua 84.3%
  • Shell 7.4%
  • Nix 6.5%
  • Just 1.8%
Find a file
Barrett Ruth 7e168311db
All checks were successful
quality / Format (push) Successful in 4s
quality / Lint (push) Successful in 4s
quality / Test (push) Successful in 3s
deploy / LuaRocks (push) Successful in 32s
ci: fix deploy job name expression (#22)
## Problem

The consolidated deploy workflow uses one publish job with a dynamic job name. On main pushes, Forgejo rendered the job as `deploy / LuaRocks` instead of `deploy / Nightly`, even though the step-level `github.ref` conditions still selected the correct publish path.

## Solution

Use `github.ref` for the job-name expression, matching the step conditions and the runner-provided compatibility context. This keeps the one-file `deploy.yaml` layout while preserving the expected rendered names.

Validation:

- parsed `.forgejo/workflows/*.yaml` with PyYAML via Nix
- `git diff --check`

Reviewed-on: #22
2026-05-03 19:01:31 +00:00
.forgejo ci: fix deploy job name expression (#22) 2026-05-03 19:01:31 +00:00
.github/workflows ci: redirect GitHub PRs to Forgejo (#13) 2026-05-03 15:58:09 +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 fix: dont commit envrc 2026-02-20 17:22:50 -05: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: use Forgejo source URLs (#14) 2026-05-03 16:17:00 +00:00
flake.lock feat: initial release 2026-02-20 16:55:55 -05:00
flake.nix ci: add justfile + .#ci devShell for forgejo CI 2026-04-30 20:23:08 -04:00
justfile style(forgejo): drop biome scope shortcut, let biome.json drive includes 2026-04-30 21:09:24 -04:00
LICENSE chore: switch license to GPL 2026-04-29 18:19:03 -04:00
README.md docs: use vim.pack installs and add Luarocks workflow (#15) 2026-05-03 16:36:17 +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.

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',
      },
    },
  },
})