| 40 | } |
| 41 | |
| 42 | void ScintillaCommenter::uncommentSelection() |
| 43 | { |
| 44 | editor->forEachLineInSelection(editor->mainSelection(), [&](int line) { |
| 45 | uncommentLine(line); |
| 46 | }); |
| 47 | } |
| 48 | |
| 49 | void ScintillaCommenter::toggleLine(int line) |
| 50 | { |
no test coverage detected