Created
July 28, 2014 08:46
-
-
Save RobertAudi/11ffa90f4952e5923ce7 to your computer and use it in GitHub Desktop.
System clipboard support in IdeaVim
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
nnoremap yy "+yy | |
vnoremap y "+y | |
nnoremap p "+p | |
vnoremap p "+p | |
nnoremap P "+P | |
vnoremap P "+P |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The
nnoremap
/vnoremap
workaround does not seem to be required anymore. When I configureset clipboard+=unnamed
, neitherx
nord
copies the content to the clipboard.