()
| 13961 | }); |
| 13962 | } |
| 13963 | function replace() { |
| 13964 | var text = cm.getRange(searchCursor.from(), searchCursor.to()); |
| 13965 | var newText = text.replace(query, replaceWith); |
| 13966 | searchCursor.replace(newText); |
| 13967 | } |
| 13968 | function next() { |
| 13969 | // The below only loops to skip over multiple occurrences on the same |
| 13970 | // line when 'global' is not true. |
no test coverage detected