TabsToSpaces replaces tabs with spaces over given region; end is *exclusive*
(start, end int)
| 926 | |
| 927 | // TabsToSpaces replaces tabs with spaces over given region; end is *exclusive* |
| 928 | func (tb *Buffer) TabsToSpaces(start, end int) { |
| 929 | autoSave := tb.batchUpdateStart() |
| 930 | defer tb.batchUpdateEnd(autoSave) |
| 931 | tb.Lines.TabsToSpaces(start, end) |
| 932 | tb.signalMods() |
| 933 | } |
| 934 | |
| 935 | // SpacesToTabs replaces tabs with spaces over given region; end is *exclusive* |
| 936 | func (tb *Buffer) SpacesToTabs(start, end int) { |
nothing calls this directly
no test coverage detected