Get the text between the given points in the editor, which should be {line, ch} objects. An optional third argument can be given to indicate the line separator string to use (defaults to "\n").
(from: Position, to: CodeMirror.Position, seperator?: string)
| 438 | /** Get the text between the given points in the editor, which should be {line, ch} objects. |
| 439 | An optional third argument can be given to indicate the line separator string to use (defaults to "\n"). */ |
| 440 | getRange(from: Position, to: CodeMirror.Position, seperator?: string): string; |
| 441 | |
| 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. */ |
no outgoing calls
no test coverage detected