()
| 56 | } |
| 57 | |
| 58 | function paste() { |
| 59 | _field.log("about to paste"); |
| 60 | var newText = getNewClipboard(function (newText) { |
| 61 | _field.log("in continuation"); |
| 62 | if (newText != null) |
| 63 | addToRing(newText); |
| 64 | |
| 65 | var start = cm.getCursor(); |
| 66 | cm.replaceRange(getFromRing(0), cm.getCursor("start"), cm.getCursor("end"), "paste"); |
| 67 | cm.setSelection(cm.getCursor("end"), cm.getCursor("end")); |
| 68 | }) |
| 69 | } |
| 70 | |
| 71 | function pasteAgain() { |
| 72 | cm.replaceSelection(popFromRing(), "around", "paste"); |
no test coverage detected