cmp-tmux
cmp-tmux copied to clipboard
Tmux completion source for nvim-cmp and nvim-compe
It would be nice to modify the keyword pattern so that only patterns with 4 or more characters are returned: i.e. ``` [[\w\w\w\w\+]] ```
Hi, It seems this plugin doesn't support multibyte charactor, for example `图片`。I tried modifying ```lua function source:get_keyword_pattern() return [[\w\+]] end ``` to `[[\k\+]]`, but failed. Currently, multibyte charactor is support...
Great plugin! Thanks a lot for writing it! I'm not sure if you would like to merge this addition - it is a breaking change (I've changed `all_panes` boolean option...
by delaying the initialization of `source`. fixes #29 The API remains unchanged.
AFAIK a lot of people use cmp-tmux as a dependency of cmp for convenience. As a result, `option` set during cmp setup won't effect the `source.config` which have already been...