mirror of
https://github.com/python/cpython.git
synced 2025-08-02 08:02:56 +00:00
(py-comment-region): obsoleted by comment-region
(python-mode): set comment-start to "## " for comment-region. (py-mode-map): Bind C-c# to comment-region.
This commit is contained in:
parent
7aee384dbc
commit
867a32ab53
1 changed files with 6 additions and 28 deletions
|
@ -93,7 +93,7 @@ preceding line's indentation. When this flag is nil, continuation
|
||||||
lines are aligned to column zero.")
|
lines are aligned to column zero.")
|
||||||
|
|
||||||
(defvar py-block-comment-prefix "##"
|
(defvar py-block-comment-prefix "##"
|
||||||
"*String used by `py-comment-region' to comment out a block of code.
|
"*String used by \\[comment-region] to comment out a block of code.
|
||||||
This should follow the convention for non-indenting comment lines so
|
This should follow the convention for non-indenting comment lines so
|
||||||
that the indentation commands won't get confused (i.e., the string
|
that the indentation commands won't get confused (i.e., the string
|
||||||
should be of the form `#x...' where `x' is not a blank or a tab, and
|
should be of the form `#x...' where `x' is not a blank or a tab, and
|
||||||
|
@ -282,7 +282,7 @@ Currently-active file is at the head of the list.")
|
||||||
("\C-c\C-p" . py-previous-statement)
|
("\C-c\C-p" . py-previous-statement)
|
||||||
("\C-c\C-u" . py-goto-block-up)
|
("\C-c\C-u" . py-goto-block-up)
|
||||||
("\C-c\C-m" . py-mark-block)
|
("\C-c\C-m" . py-mark-block)
|
||||||
("\C-c#" . py-comment-region)
|
("\C-c#" . comment-region)
|
||||||
("\C-c?" . py-describe-mode)
|
("\C-c?" . py-describe-mode)
|
||||||
("\C-c\C-hm" . py-describe-mode)
|
("\C-c\C-hm" . py-describe-mode)
|
||||||
("\e\C-a" . beginning-of-python-def-or-class)
|
("\e\C-a" . beginning-of-python-def-or-class)
|
||||||
|
@ -397,7 +397,7 @@ py-beep-if-tab-change\tring the bell if tab-width is changed"
|
||||||
'((paragraph-separate . "^[ \t]*$")
|
'((paragraph-separate . "^[ \t]*$")
|
||||||
(paragraph-start . "^[ \t]*$")
|
(paragraph-start . "^[ \t]*$")
|
||||||
(require-final-newline . t)
|
(require-final-newline . t)
|
||||||
(comment-start . "# ")
|
(comment-start . "## ")
|
||||||
(comment-start-skip . "# *")
|
(comment-start-skip . "# *")
|
||||||
(comment-column . 40)
|
(comment-column . 40)
|
||||||
(indent-region-function . py-indent-region)
|
(indent-region-function . py-indent-region)
|
||||||
|
@ -981,13 +981,14 @@ many columns."
|
||||||
|
|
||||||
(defun py-indent-region (start end &optional indent-offset)
|
(defun py-indent-region (start end &optional indent-offset)
|
||||||
"Reindent a region of Python code.
|
"Reindent a region of Python code.
|
||||||
|
|
||||||
The lines from the line containing the start of the current region up
|
The lines from the line containing the start of the current region up
|
||||||
to (but not including) the line containing the end of the region are
|
to (but not including) the line containing the end of the region are
|
||||||
reindented. If the first line of the region has a non-whitespace
|
reindented. If the first line of the region has a non-whitespace
|
||||||
character in the first column, the first line is left alone and the
|
character in the first column, the first line is left alone and the
|
||||||
rest of the region is reindented with respect to it. Else the entire
|
rest of the region is reindented with respect to it. Else the entire
|
||||||
region is reindented with respect to the (closest code or
|
region is reindented with respect to the (closest code or indenting
|
||||||
indenting-comment) statement immediately preceding the region.
|
comment) statement immediately preceding the region.
|
||||||
|
|
||||||
This is useful when code blocks are moved or yanked, when enclosing
|
This is useful when code blocks are moved or yanked, when enclosing
|
||||||
control structures are introduced or removed, or to reformat code
|
control structures are introduced or removed, or to reformat code
|
||||||
|
@ -1401,29 +1402,6 @@ pleasant."
|
||||||
;; no comment, so go back
|
;; no comment, so go back
|
||||||
(goto-char start))))))))
|
(goto-char start))))))))
|
||||||
|
|
||||||
(defun py-comment-region (start end &optional uncomment-p)
|
|
||||||
"Comment out region of code; with prefix arg, uncomment region.
|
|
||||||
The lines from the line containing the start of the current region up
|
|
||||||
to (but not including) the line containing the end of the region are
|
|
||||||
commented out, by inserting the string `py-block-comment-prefix' at
|
|
||||||
the start of each line. With a prefix arg, removes
|
|
||||||
`py-block-comment-prefix' from the start of each line instead."
|
|
||||||
(interactive "*r\nP") ; region; raw prefix arg
|
|
||||||
(goto-char end) (beginning-of-line) (setq end (point))
|
|
||||||
(goto-char start) (beginning-of-line) (setq start (point))
|
|
||||||
(let ((prefix-len (length py-block-comment-prefix)) )
|
|
||||||
(save-excursion
|
|
||||||
(save-restriction
|
|
||||||
(narrow-to-region start end)
|
|
||||||
(while (not (eobp))
|
|
||||||
(if uncomment-p
|
|
||||||
(and (string= py-block-comment-prefix
|
|
||||||
(buffer-substring
|
|
||||||
(point) (+ (point) prefix-len)))
|
|
||||||
(delete-char prefix-len))
|
|
||||||
(insert py-block-comment-prefix))
|
|
||||||
(forward-line 1))))))
|
|
||||||
|
|
||||||
|
|
||||||
;; Documentation functions
|
;; Documentation functions
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue