]> granicus.if.org Git - python/commit
Tim Peters:
authorGuido van Rossum <guido@python.org>
Tue, 8 Jun 1999 12:54:23 +0000 (12:54 +0000)
committerGuido van Rossum <guido@python.org>
Tue, 8 Jun 1999 12:54:23 +0000 (12:54 +0000)
commit0fcd635d418d444b2f64da7695f4d48b8bf637bd
treee68d414b4600ff9e4cf9f65a549b06d3b460c214
parentdf9f7a3e525ced6f8771ff651c536574b93c0af6
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).
Tools/idle/AutoIndent.py