Last active
October 26, 2022 12:35
-
-
Save FlakM/cb9189567a529d94f7ab2d742c968810 to your computer and use it in GitHub Desktop.
Scala snippets
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
/** | |
* Copy given string into clipboard. | |
* | |
* @param s string that should be copied into clipboard | |
*/ | |
def yank(s: String) = { | |
val stringSelection = new java.awt.datatransfer.StringSelection(s) | |
val clipboard = java.awt.Toolkit.getDefaultToolkit().getSystemClipboard() | |
clipboard.setContents(stringSelection, null) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment