Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Neovide: How to paste with SHIFT+INSERT?

Tags:

paste

neovide

I normally use vim and neovim on the Gnome Terminal where I can paste from the Gnome clipboard with SHIFT+INSERT but this does not work in neovide (Arch Linux AUR package neovide-git 0.7.0.r336.g86aa275-1).

How can I enable clipboard paste with SHIFT+INSERT in neovide like it works in normal vim/nvim from the terminal?

like image 530
Konrad Höffner Avatar asked Mar 06 '26 07:03

Konrad Höffner


1 Answers

Make a new configuration file for GUI configuration as:

~/.config/nvim/ginit.vim

After that, add the below line to paste using SHIFT+INSERT as:

map! <S-Insert> <C-R>+
like image 53
Bhushan Balasaheb Sahane Avatar answered Mar 11 '26 11:03

Bhushan Balasaheb Sahane