(String text)
| 317 | } |
| 318 | |
| 319 | public static void pasteFromString(String text) { |
| 320 | text = text.replaceAll("\\r?\\n|\\r", (char) 0x0d + ""); |
| 321 | pasteBuffer = new StringReader(text); |
| 322 | } |
| 323 | |
| 324 | @InvokableAction(name = "Paste clipboard", alternatives = "paste", category = "Keyboard", notifyOnRelease = false, defaultKeyMapping = {"Ctrl+Shift+V","Shift+Insert"}, consumeKeyEvent = true) |
| 325 | public static void pasteFromClipboard() { |
no outgoing calls
no test coverage detected