| 33 | } |
| 34 | |
| 35 | void ScintillaCommenter::commentSelection() |
| 36 | { |
| 37 | editor->forEachLineInSelection(editor->mainSelection(), [&](int line) { |
| 38 | commentLine(line); |
| 39 | }); |
| 40 | } |
| 41 | |
| 42 | void ScintillaCommenter::uncommentSelection() |
| 43 | { |
no test coverage detected