Return value for tab width.
(self)
| 343 | return "break" |
| 344 | |
| 345 | def _asktabwidth(self): |
| 346 | "Return value for tab width." |
| 347 | return askinteger( |
| 348 | "Tab width", |
| 349 | "Columns per tab? (2-16)", |
| 350 | parent=self.editwin.text, |
| 351 | initialvalue=self.editwin.indentwidth, |
| 352 | minvalue=2, |
| 353 | maxvalue=16) |
| 354 | |
| 355 | |
| 356 | class Indents: |
no test coverage detected