Lines Matching refs:indentwidth
171 text.bind("<<change-indentwidth>>",self.change_indentwidth_event)
199 # indentwidth is not a multiple of tabwidth,
217 # indentwidth is the number of screen characters per indent level.
219 self.indentwidth = self.tabwidth
752 "Update the indentwidth if changed and not using tabs in this window"
755 self.indentwidth = idleConf.GetOption('main', 'Indent','num-spaces',
1132 self.indentwidth = i
1133 if self.indentwidth != self.tabwidth:
1163 want = ((have - 1) // self.indentwidth) * self.indentwidth
1205 self.reindent_to(effective + self.indentwidth)
1212 n = self.indentwidth
1255 y = pyparse.Parser(self.indentwidth, self.tabwidth)
1339 effective = effective + self.indentwidth
1350 effective = max(effective - self.indentwidth, 0)
1406 self.indentwidth = 8
1422 initialvalue=self.indentwidth,
1425 if new and new != self.indentwidth and not self.usetabs:
1426 self.indentwidth = new
1482 initialvalue=self.indentwidth,
1486 # Guess indentwidth from text content.
1487 # Return guessed indentwidth. This should not be believed unless
1597 "<<change-indentwidth>>"}):