Commit graph

7 commits

Author SHA1 Message Date
Barrett Ruth
c0c59d1e57
perf: async parallel cache initialization and remove deepcopy (#6)
Some checks are pending
quality / changes (push) Waiting to run
quality / Lua Format Check (push) Blocked by required conditions
quality / Lua Lint Check (push) Blocked by required conditions
quality / Lua Type Check (push) Blocked by required conditions
quality / Markdown Format Check (push) Blocked by required conditions
test / Test (Neovim nightly) (push) Waiting to run
test / Test (Neovim stable) (push) Waiting to run
luarocks / quality (push) Waiting to run
luarocks / publish (push) Blocked by required conditions
Problem: first completion request blocked the UI with three sequential
synchronous vim.system():wait() calls (man page, command names,
command list), and every subsequent completion unnecessarily
deep-copied the entire cache.

Solution: run all three system calls concurrently via vim.system
callbacks, merging results when all complete. Queue pending completion
requests during loading. Return cached items directly instead of
deep-copying.
2026-02-20 20:39:32 -05:00
Barrett Ruth
7003996643
feat: add healthcheck (#7)
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:36:41 -05:00
7befe69ea1
fix(ci): format 2026-02-20 18:39:20 -05:00
Barrett Ruth
4d5df4aba9
Add image preview to README
Added an image preview for blink-cmp tmux.
2026-02-20 18:09:06 -05:00
7cb2f966fc
fix: dont commit envrc 2026-02-20 17:22:50 -05:00
3d80e8572c build: track envrc 2026-02-20 16:56:17 -05:00
a2fe68b248 feat: initial release 2026-02-20 16:55:55 -05:00