Skip to content

Commit 609389c

Browse files
Kamilcukmehalter
andauthored
feat(completion): add blink-cmp-tmux (#1416)
* feat(completion): add blink-cmp-tmux * Update lua/astrocommunity/completion/blink-cmp-tmux/init.lua --------- Co-authored-by: Micah Halter <[email protected]>
1 parent 25e7d13 commit 609389c

File tree

2 files changed

+30
-0
lines changed

2 files changed

+30
-0
lines changed
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# Completion source using tmux for blink.cmp
2+
3+
Port of the andersevenrud/cmp-tmux completion source for the blink.cmp Neovim plugin.
4+
5+
## Features
6+
7+
- Integrates with tmux to provide completion suggestions based on the content of tmux panes.
8+
- Supports capturing content from all panes or only the current pane.
9+
- Allows capturing the history of panes for more comprehensive suggestions.
10+
- Configurable trigger characters to activate completions.
11+
12+
**Repository:** <https://github.com/mgalliou/blink-cmp-tmux>
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
return {
2+
"mgalliou/blink-cmp-tmux",
3+
lazy = true,
4+
specs = {
5+
{
6+
"Saghen/blink.cmp",
7+
optional = true,
8+
opts = {
9+
sources = {
10+
default = { "tmux" },
11+
providers = {
12+
tmux = { name = "tmux", module = "blink-cmp-tmux" },
13+
},
14+
},
15+
},
16+
},
17+
},
18+
}

0 commit comments

Comments
 (0)