()
| 5253 | }); |
| 5254 | } |
| 5255 | function replace() { |
| 5256 | var text = cm.getRange(searchCursor.from(), searchCursor.to()); |
| 5257 | var newText = text.replace(query, replaceWith); |
| 5258 | searchCursor.replace(newText); |
| 5259 | } |
| 5260 | function next() { |
| 5261 | // The below only loops to skip over multiple occurrences on the same |
| 5262 | // line when 'global' is not true. |
no test coverage detected