Created
January 9, 2014 04:15
-
-
Save apinstein/8329337 to your computer and use it in GitHub Desktop.
trying to get iterm2 + vim + screen clipboard integration
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
# iterm escape code to allow clipboard integration | |
https://code.google.com/p/iterm2/wiki/ProprietaryEscapeCodes | |
# do this in a non-screen terminal, it works! | |
printf "\e]50;CopyToClipboard\a...followed by text followed by...\e]50;EndCopy\a" && echo && echo 'clip...' && pbpaste | |
# problems | |
1. vim --version | |
-> -clipboard -xterm_clipboard | |
2. passing thru escape sequence in screen. maybe via termcap? or some other "carve out" for that escape sequence? |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment