Skip to content

Latest commit

 

History

History
31 lines (23 loc) · 735 Bytes

README.md

File metadata and controls

31 lines (23 loc) · 735 Bytes

YANKEE.vim

Installation

  1. This plugin use junegunn/fzf, so please install it and setup runtimepath. if already installed fzf in your environment, then unnecessary this step.
# Install fzf
$ git clone https://github.com/junegunn/fzf.git $HOME/.fzf
" In .vimrc
Plug '$HOME/.fzf'
  1. Install this plugin.
Plug 'n04ln/yankee.vim'
  1. setup g:yankee_buf_list. This variable is an Array of the name of target buffers. There are used by this plugin.
let g:yankee_buf_list = ['"b', '"c', '"f', '"h']
  1. Complete 🎉

Usage

In Visual mode, when press <C-y>y, yank text to one of the g:yankee_buf_list.

In Normal mode, when press <C-y>p, paste text with fzf (plz choose it).