|
36 | 36 | ;; (setq auto-mode-alist |
37 | 37 | ;; (cons '("\\.py$" . python-mode) auto-mode-alist)) |
38 | 38 |
|
| 39 | +;; Here's a brief list of recent additions/improvements: |
| 40 | +;; |
| 41 | +;; - Wrapping and indentation within triple quote strings should work |
| 42 | +;; properly now. |
| 43 | +;; - `Standard' bug reporting mechanism (use C-c C-b) |
| 44 | +;; - py-mark-block was moved to C-c C-m |
| 45 | +;; - C-c C-v shows you the python-mode version |
| 46 | +;; - a basic python-font-lock-keywords has been added for Emacs 19 |
| 47 | +;; font-lock colorizations. |
| 48 | +;; - proper interaction with pending-del and del-sel modes. |
| 49 | +;; - New py-electric-colon (:) command for improved outdenting. Also |
| 50 | +;; py-indent-line (TAB) should handle outdented lines better. |
| 51 | + |
39 | 52 | ;; Here's a brief to do list: |
40 | 53 | ;; |
41 | | -;; 1. Better integration with gud-mode for debugging. |
42 | | -;; 2. Rewrite according to GNU Emacs Lisp standards. |
| 54 | +;; - Better integration with gud-mode for debugging. |
| 55 | +;; - Rewrite according to GNU Emacs Lisp standards. |
| 56 | +;; - py-delete-char should obey numeric arguments. |
| 57 | +;; - even better support for outdenting. Guido suggests outdents of |
| 58 | +;; at least one level after a return, raise, break, or continue |
| 59 | +;; statement. |
43 | 60 |
|
44 | 61 | ;; If you can think of more things you'd like to see, drop me a line. |
45 | 62 | ;; If you want to report bugs, use py-submit-bug-report (C-c C-b). |
@@ -1843,11 +1860,13 @@ With \\[universal-argument] just submit an enhancement request." |
1843 | 1860 | (interactive |
1844 | 1861 | (list (not (y-or-n-p |
1845 | 1862 | "Is this a bug report? (hit `n' to send other comments) ")))) |
1846 | | - (let ((reporter-prompt-for-summary-p (not enhancement-p))) |
| 1863 | + (let ((reporter-prompt-for-summary-p (if enhancement-p |
| 1864 | + "(Very) brief summary: " |
| 1865 | + t))) |
1847 | 1866 | (require 'reporter) |
1848 | 1867 | (reporter-submit-bug-report |
1849 | 1868 | py-help-address ;address |
1850 | | - "python-mode" ;pkgname |
| 1869 | + (concat "python-mode " py-version) ;pkgname |
1851 | 1870 | ;; varlist |
1852 | 1871 | (if enhancement-p nil |
1853 | 1872 | '(py-python-command |
|
0 commit comments