tmux-complete.vim icon indicating copy to clipboard operation
tmux-complete.vim copied to clipboard

Vim plugin for insert mode completion of words in adjacent tmux panes

Results 14 tmux-complete.vim issues
Sort by recently updated
recently updated
newest added

This is my first pull request (following the new issue I created on 05/01/2022 requesting the feature), so I hope it's in good order. I explained the new feature in...

I really like this plugin! I ended up taking the tmuxcomplete script and modifying it to allow me to copy all the visible lines in a specified tmux pane to...

Something like that: ```lua local source = {} source.complete = function(self, params, callback) vim.fn["tmuxcomplete#async#gather_candidates"](function (raw_items) local items = {} for _, word in ipairs(raw_items) do table.insert(items, { label = word,...

Hi, tmux-complete is a great vim-plugin. I'm using neovim + coc.nvim. I found it try to complete the words from all panes( I have a lot of sessions. So it...

CoC has an option `suggest.completionItemKindLabels` from [here](https://github.com/neoclide/coc.nvim/blob/97e95b9df64595699506ce9cf2f07bb7a91141fb/data/schema.json#L461) that allows labels to be shown next to completion items like this: As you can see in the screenshot though, it seems the...

ref: https://github.com/prabirshrestha/asyncomplete.vim/pull/204

Here's a draft mapping from the asyncomplete option set to deoplete: ```vim deoplete#custom#var('tmux-complete', 'splitmode', 'words') " (Currently a default of v:false for deoplete) deoplete#custom#var('tmux-complete', 'filter-prefix', v:true) deoplete#custom#var('tmux-complete', 'show_incomplete', v:true) "...

Hello, Whenever vim is started and if no tmux instances are running, I get 'No tmux found' messages in the completion dialog. ![no-tmux-found-completion](http://i.imgur.com/A81WY4F.png) IMHO, tmux-complete should be quiet if no...

This is a really strange behaviour, maybe you have an idea what could cause this. I use the same setup on another mac (both macOS Sierra, Vim 8.0.3) and there's...

When used in conjunction with deoplete I get constant cursor flickering. This flickering disables when I disable tmux-complete so I'm pretty certain this plugin is the cause of it. I'm...