start is a an optional string indicating which end of the selection to return. It may be "start" , "end" , "head"(the side of the selection that moves when you press shift + arrow), or "anchor"(the fixed side of the selection).Omitting the argument is the same as passing "head".A { l
(start?: string)
| 498 | It may be "start" , "end" , "head"(the side of the selection that moves when you press shift + arrow), |
| 499 | or "anchor"(the fixed side of the selection).Omitting the argument is the same as passing "head".A { line , ch } object will be returned. */ |
| 500 | getCursor(start?: string): CodeMirror.Position; |
| 501 | |
| 502 | /** Retrieves a list of all current selections. These will always be sorted, and never overlap (overlapping selections are merged). |
| 503 | Each object in the array contains anchor and head properties referring to {line, ch} objects. */ |
no outgoing calls
no test coverage detected