Tmux command completion source for blink.cmp
- Lua 84.3%
- Shell 7.4%
- Nix 6.5%
- Just 1.8%
## 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 |
||
|---|---|---|
| .forgejo | ||
| .github/workflows | ||
| lua | ||
| spec | ||
| .busted | ||
| .editorconfig | ||
| .gitignore | ||
| .luarc.json | ||
| biome.json | ||
| blink-cmp-tmux-scm-1.rockspec | ||
| flake.lock | ||
| flake.nix | ||
| justfile | ||
| LICENSE | ||
| README.md | ||
| selene.toml | ||
| stylua.toml | ||
| vim.yaml | ||
blink-cmp-tmux
Tmux command completion source for blink.cmp.
Features
- Completes tmux commands with full usage signatures
- Includes alias information for commands
- Shows man page descriptions in documentation
Requirements
- Neovim 0.10.0+
- blink.cmp
- tmux
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',
},
},
},
})