(int start, int end, String to)
| 124 | } |
| 125 | |
| 126 | public void replaceRange(int start, int end, String to) |
| 127 | { |
| 128 | editor.sendJavaScriptNow("cm.getDoc().replaceRange(\""+to+"\", cm.posFromIndex("+start+"), cm.posFromIndex("+end+"))"); |
| 129 | } |
| 130 | |
| 131 | public void insertAtStart(String insertion) |
| 132 | { |
no test coverage detected