Skip to content

Instantly share code, notes, and snippets.

@FlakM
Last active October 26, 2022 12:35
Show Gist options
  • Save FlakM/cb9189567a529d94f7ab2d742c968810 to your computer and use it in GitHub Desktop.
Save FlakM/cb9189567a529d94f7ab2d742c968810 to your computer and use it in GitHub Desktop.
Scala snippets
/**
* 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