Replace the part of the document between from and to with the given string. from and to must be {line, ch} objects. to can be left off to simply insert the string at position from.
(replacement: string, from: CodeMirror.Position, to: CodeMirror.Position, origin?:string)
| 442 | /** Replace the part of the document between from and to with the given string. |
| 443 | from and to must be {line, ch} objects. to can be left off to simply insert the string at position from. */ |
| 444 | replaceRange(replacement: string, from: CodeMirror.Position, to: CodeMirror.Position, origin?:string): void; |
| 445 | |
| 446 | /** Get the content of line n. */ |
| 447 | getLine(n: number): string; |
no outgoing calls
no test coverage detected