mirror of
https://github.com/python/cpython.git
synced 2025-08-03 08:34:29 +00:00
Tim Peters:
+ Set usetabs=1. Editing pyclbr.py was driving me nuts <0.6 wink>. usetabs=1 is the Emacs pymode default too, and thanks to indentwidth != tabwidth magical usetabs disabling, new files are still created with tabs turned off. The only implication is that if you open a file whose first indent is a single tab, IDLE will now magically use tabs for that file (and set indentwidth to 8). Note that the whole scheme doesn't work right for PythonWin, though, since Windows users typically set tabwidth to 4; Mark probably has to hide the IDLE algorithm from them (which he already knows). + Changed comment_region_event to stick "##" in front of every line. The "holes" previously left on blank lines were visually confusing (made it needlessly hard to figure out what to uncomment later).
This commit is contained in:
parent
df9f7a3e52
commit
0fcd635d41
1 changed files with 2 additions and 3 deletions
|
@ -99,7 +99,7 @@ class AutoIndent:
|
|||
# tab setting causes it to use an entirely different tabbing algorithm,
|
||||
# treating tab stops as fixed distances from the left margin.
|
||||
# Nobody expects this, so for now tabwidth should never be changed.
|
||||
usetabs = 0
|
||||
usetabs = 1
|
||||
indentwidth = 4
|
||||
tabwidth = TK_TABWIDTH_DEFAULT
|
||||
|
||||
|
@ -349,8 +349,7 @@ class AutoIndent:
|
|||
head, tail, chars, lines = self.get_region()
|
||||
for pos in range(len(lines)):
|
||||
line = lines[pos]
|
||||
if line:
|
||||
lines[pos] = '##' + line
|
||||
lines[pos] = '##' + line
|
||||
self.set_region(head, tail, chars, lines)
|
||||
|
||||
def uncomment_region_event(self, event):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue