summaryrefslogtreecommitdiffstats
path: root/Misc
Commit message (Collapse)AuthorAgeFilesLines
* (py-no-outdent-re): Added return, break, raise, continue since weBarry Warsaw1996-08-121-1/+3
| | | | already outdent for those statements.
* New AIX-NOTESGuido van Rossum1996-08-091-0/+144
|
* New AIX-NOTESGuido van Rossum1996-08-091-61/+0
|
* #updated commentaryBarry Warsaw1996-08-061-4/+3
|
* (py-menu): Create default valueBarry Warsaw1996-08-061-0/+7
|
* (py-forward-into-nomenclature): Slightly better regex for stopping onBarry Warsaw1996-08-051-2/+4
| | | | underscore.
* (py-electric-colon): Use (py-next-statement -1) instead ofBarry Warsaw1996-08-021-1/+1
| | | | (forward-line -1), to properly catch continued statements.
* #updated commentsBarry Warsaw1996-08-011-19/+22
|
* (python-mode): automatically install imenu stuff.Barry Warsaw1996-08-011-8/+15
|
* (imenu-example--python-show-method-args-p,Barry Warsaw1996-08-011-0/+210
| | | | | | | | | | | | | imenu-example--python-class-regexp, imenu-example--python-method-regexp, imenu-example--python-method-no-arg-parens, imenu-example--python-method-arg-parens, imenu-example--generic-python-expression, imenu-example--python-generic-regexp, imenu-example--python-generic-parens): New variables. (imenu-example--create-python-index, imenu-example--create-python-index-engine): New functions.
* (py-keep-region-active): Zap duplicate defun.Barry Warsaw1996-08-011-11/+6
|
* (py-delete-char): Check for py-honor-comment-indentation.Barry Warsaw1996-08-011-0/+1
|
* (py-mode): comment-start is now "# " so indent-for-comment does theBarry Warsaw1996-08-011-6/+41
| | | | | | | | | | right thing. (py-comment-region): let-bind comment-start to "## " so commented regions get transformed into non-indenting comment lines. (py-compute-region): Implement modification to rule for recognizing "indenting comment lines".
* New .pyc magic numnber, too.Guido van Rossum1996-08-011-1/+1
|
* #comment updateBarry Warsaw1996-07-311-0/+2
|
* #comment updateBarry Warsaw1996-07-311-0/+4
|
* #updated to do listBarry Warsaw1996-07-311-4/+4
|
* (py-parse-state): stop searching backwards when we found a keyword atBarry Warsaw1996-07-311-2/+6
| | | | | column zero. Perhaps a kludge, but similar in nature to Emacs' beginning-of-defun shortcut.
* (py-statement-closes-block-p, py-compute-indentation): Outdent oneBarry Warsaw1996-07-311-3/+17
| | | | level after a return, raise, break, or continue statement.
* Exhaustive list of news in beta2 compared to beta1.Guido van Rossum1996-07-301-9/+73
| | | | Now all we need to do is do the same for beta1 compared to 1.3.
* Got rid of all references to stdwin.Guido van Rossum1996-07-301-38/+17
| | | | | | Documented insertion of script directory in path. Updated author's address. Changed MAILING LIST section to INTERNET RESOURCES.
* Moved 1.3 news to HISTORY; put some 1.4 news in NEWSGuido van Rossum1996-07-302-145/+167
|
* Added two new questions; about globals/locals and about recursive imports.Guido van Rossum1996-07-301-6/+40
|
* Added Bill TuttGuido van Rossum1996-07-301-0/+1
|
* directives for Tools/scripts/fixcid.pyGuido van Rossum1996-07-301-0/+398
|
* (python-mode): Added menu support, requires easymenu.Barry Warsaw1996-07-291-10/+45
|
* (py-forward-into-nomenclature): small fix to not infinitely loop atBarry Warsaw1996-07-251-1/+1
| | | | underscores.
* #comment update, re: py-mode-syntax-tableBarry Warsaw1996-07-241-4/+5
|
* (py-forward-into-nomenclature, py-backward-into-nomenclature): New functions.Barry Warsaw1996-07-241-0/+31
|
* (py-shift-region-left): When checking for left edged code, watch forBarry Warsaw1996-07-231-1/+2
| | | | blank lines.
* Additions to the cast of thousandsGuido van Rossum1996-07-211-0/+13
|
* added a thing on the to-do listBarry Warsaw1996-07-081-1/+2
|
* (python-font-lock-keywords): added class and defBarry Warsaw1996-07-051-7/+13
|
* (py-mode-syntax-table): revert underscore to word class, even though IBarry Warsaw1996-07-031-1/+5
| | | | don't agree with it.
* (py-delete-char): Obey numeric argument.Barry Warsaw1996-07-031-15/+21
|
* (py-shift-region-left, py-shift-region-right, py-indent-right,Barry Warsaw1996-07-031-88/+32
| | | | | | | py-outdent-left, py-mode-map): Folded all functionality into py-shift-region-* commands. Bound C-c C-l to py-shift-region-left and C-c C-r to py-shift-region-right. Removed py-indent-right and py-indent-left.
* Some updates. Still out of date.Guido van Rossum1996-06-261-29/+157
|
* new contributorsGuido van Rossum1996-06-261-0/+8
|
* (py-indent-right, py-outdent-left): fixed placement of point afterBarry Warsaw1996-04-081-16/+22
| | | | adjustments.
* (py-parse-state): make sure we don't land inside a triple-quotedBarry Warsaw1996-04-061-10/+16
| | | | string
* (py-indent-right, py-outdent-left): Watch out for (mark) returningBarry Warsaw1996-03-251-4/+10
| | | | nil.
* #updated some commentsBarry Warsaw1996-03-221-7/+9
|
* (py-indent-right, py-indent-left): support indentation of regions orBarry Warsaw1996-03-221-34/+69
| | | | current line.
* (py-comment-region): obsoleted by comment-regionBarry Warsaw1996-03-071-28/+6
| | | | | | (python-mode): set comment-start to "## " for comment-region. (py-mode-map): Bind C-c# to comment-region.
* (python-font-lock-keywords): make it a defconstBarry Warsaw1996-03-061-2/+2
|
* (py-honor-comment-indentation, py-compute-indentation): allow otherBarry Warsaw1996-03-061-10/+23
| | | | than nil or t values.
* (py-honor-comment-indentation): new variable.Barry Warsaw1996-03-051-1/+13
| | | | (py-compute-indentation): use new variable.
* #removed font-lock cruftBarry Warsaw1996-03-051-44/+0
|
* (python-font-lock-keywords): Much improved descrimination betweenBarry Warsaw1996-03-051-23/+23
| | | | keywords and names with keywords in them.
* (py-compute-indentation): fix skipping backwards over comments byBarry Warsaw1996-03-041-2/+5
| | | | using forward-comment (and Emacs 19 function) if available.