learnbyexample@programming.dev to Linux@lemmy.mlEnglish · 27日前What's involved in getting a "modern" terminal setup?jvns.caexternal-linkmessage-square16fedilinkarrow-up135arrow-down118
arrow-up117arrow-down1external-linkWhat's involved in getting a "modern" terminal setup?jvns.calearnbyexample@programming.dev to Linux@lemmy.mlEnglish · 27日前message-square16fedilink
minus-squareDeuxChevaux@lemmy.worldlinkfedilinkarrow-up4·27日前Of all of these things, i only miss a shared clipboard between Vim and the rest of the system (or vice versa). That would be rad!
minus-squareCorneliusTalmadge@lemmy.worldlinkfedilinkEnglisharrow-up4·26日前This is possible you just need a version of VIM that was compiled with the clipboard feature enabled.
minus-squarebisby@lemmy.worldlinkfedilinkarrow-up3arrow-down1·26日前Sometimes you need to specify in config which clipboard to use on unix systems that might have multiple clipboards too
minus-squaredislabled@lemmy.mllinkfedilinkarrow-up1·26日前Are you talking about the + register? You could also map this to be the default “yank” register.
minus-squareDeuxChevaux@lemmy.worldlinkfedilinkarrow-up2·25日前I set it like this in .vimrc set clipboard=unnamedplus But when I yank anything, I cannot insert it somewhere else with ctrl-c.
Of all of these things, i only miss a shared clipboard between Vim and the rest of the system (or vice versa). That would be rad!
This is possible you just need a version of VIM that was compiled with the clipboard feature enabled.
Sometimes you need to specify in config which clipboard to use on unix systems that might have multiple clipboards too
Are you talking about the + register? You could also map this to be the default “yank” register.
I set it like this in .vimrc
set clipboard=unnamedplus
But when I yank anything, I cannot insert it somewhere else with ctrl-c.