CommentRegion inserts comment marker on given lines; end is *exclusive*
(start, end int)
| 908 | |
| 909 | // CommentRegion inserts comment marker on given lines; end is *exclusive* |
| 910 | func (tb *Buffer) CommentRegion(start, end int) { |
| 911 | autoSave := tb.batchUpdateStart() |
| 912 | defer tb.batchUpdateEnd(autoSave) |
| 913 | tb.Lines.CommentRegion(start, end) |
| 914 | tb.signalMods() |
| 915 | } |
| 916 | |
| 917 | // JoinParaLines merges sequences of lines with hard returns forming paragraphs, |
| 918 | // separated by blank lines, into a single line per paragraph, |
nothing calls this directly
no test coverage detected