vim-dist / webvim

WebVim is a vim based distribution targeting JavaScript and Web development
http://webvim.org
GNU General Public License v3.0
330 stars 34 forks source link

how do i use FZF with this, CTRL+P doesnt work #60

Open swarupsengupta opened 6 years ago

swarupsengupta commented 6 years ago

how do i use FZF with this, CTRL+P doesnt work https://github.com/junegunn/fzf.vim

swarupsengupta commented 6 years ago

Also Ctrl + C and Ctrl + V for copying/from to system clipboard is not working, how do i make them work

krampstudio commented 6 years ago

Hello,

That would be a good idea. Installing plugin is quite easy : Add the line Plug 'junegunn/fzf.vim' to plugins/def.vim and run :PlugInstall from vim

Then the hard part start, check if the CTRL-P mapping isn't used by any other plugin using :map and remap them if necessary.

For the other bug, it use to work : when you have something in your system clipboard it will be available in the yank. The inverse is true, yank something, it will be available in your system clipboard. May be you can let me know how to reproduce your issue.