Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions lua/astrocommunity/completion/blink-cmp-tmux/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# Completion source using tmux for blink.cmp

Port of the andersevenrud/cmp-tmux completion source for the blink.cmp Neovim plugin.

## Features

- Integrates with tmux to provide completion suggestions based on the content of tmux panes.
- Supports capturing content from all panes or only the current pane.
- Allows capturing the history of panes for more comprehensive suggestions.
- Configurable trigger characters to activate completions.

**Repository:** <https://github.com/mgalliou/blink-cmp-tmux>
18 changes: 18 additions & 0 deletions lua/astrocommunity/completion/blink-cmp-tmux/init.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
return {
"mgalliou/blink-cmp-tmux",
lazy = true,
specs = {
{
"Saghen/blink.cmp",
optional = true,
opts = {
sources = {
default = { "tmux" },
providers = {
tmux = { name = "tmux", module = "blink-cmp-tmux" },
},
},
},
},
},
}