1 ;;; newcomment.el --- (un)comment regions of buffers -*- lexical-binding: t -*-
3 ;; Copyright (C) 1999-2018 Free Software Foundation, Inc.
5 ;; Author: code extracted from Emacs-20's simple.el
6 ;; Maintainer: Stefan Monnier <monnier@iro.umontreal.ca>
7 ;; Keywords: comment uncomment
10 ;; This file is part of GNU Emacs.
12 ;; GNU Emacs is free software: you can redistribute it and/or modify
13 ;; it under the terms of the GNU General Public License as published by
14 ;; the Free Software Foundation, either version 3 of the License, or
15 ;; (at your option) any later version.
17 ;; GNU Emacs is distributed in the hope that it will be useful,
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 ;; GNU General Public License for more details.
22 ;; You should have received a copy of the GNU General Public License
23 ;; along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>.
27 ;; This library contains functions and variables for commenting and
28 ;; uncommenting source code.
30 ;; Prior to calling any `comment-*' function, you should ensure that
31 ;; `comment-normalize-vars' is first called to set up the appropriate
32 ;; variables; except for the `comment-*' commands, which call
33 ;; `comment-normalize-vars' automatically as a subroutine.
37 ;; - boxed comments in Perl are not properly uncommented because they are
38 ;; uncommented one-line at a time.
39 ;; - nested comments in sgml-mode are not properly quoted.
40 ;; - single-char nestable comment-start can only do the "\\s<+" stuff
41 ;; if the corresponding closing marker happens to be right.
42 ;; - uncomment-region with a numeric argument can render multichar
43 ;; comment markers invalid.
44 ;; - comment-indent or comment-region when called inside a comment
45 ;; will happily break the surrounding comment.
46 ;; - comment-quote-nested will not (un)quote properly all nested comment
47 ;; markers if there are more than just comment-start and comment-end.
48 ;; For example, in Pascal where {...*) and (*...} are possible.
52 ;; - rebox.el-style refill.
53 ;; - quantized steps in comment-alignment.
54 ;; - try to align tail comments.
55 ;; - check what c-comment-line-break-function has to say.
56 ;; - spill auto-fill of comments onto the end of the next line.
57 ;; - uncomment-region with a consp (for blocks) or somehow make the
58 ;; deletion of continuation markers less dangerous.
59 ;; - drop block-comment-<foo> unless it's really used.
60 ;; - uncomment-region on a subpart of a comment.
61 ;; - support gnu-style "multi-line with space in continue".
62 ;; - somehow allow comment-dwim to use the region even if transient-mark-mode
65 ;; - when auto-filling a comment, try to move the comment to the left
66 ;; rather than break it (if possible).
67 ;; - sometimes default the comment-column to the same
68 ;; one used on the preceding line(s).
76 (defalias 'indent-for-comment
'comment-indent
)
78 (defalias 'set-comment-column
'comment-set-column
)
80 (defalias 'kill-comment
'comment-kill
)
82 (defalias 'indent-new-comment-line
'comment-indent-new-line
)
85 "Indenting and filling of comments."
90 ;; Autoload this to avoid warnings, since some major modes define it.
92 (defvar comment-use-syntax
'undecided
93 "Non-nil if syntax-tables can be used instead of regexps.
94 Can also be `undecided' which means that a somewhat expensive test will
95 be used to try to determine whether syntax-tables should be trusted
96 to understand comments or not in the given buffer.
97 Major modes should set this variable.")
99 (defcustom comment-fill-column nil
100 "Column to use for `comment-indent'. If nil, use `fill-column' instead."
101 :type
'(choice (const nil
) integer
)
105 (defcustom comment-column
32
106 "Column to indent right-margin comments to.
107 Each mode may establish a different default value for this variable; you
108 can set the value for a particular mode using that mode's hook.
109 Comments might be indented to a different value in order not to go beyond
110 `comment-fill-column' or in order to align them with surrounding comments."
113 (make-variable-buffer-local 'comment-column
)
115 (put 'comment-column
'safe-local-variable
'integerp
)
118 (defvar comment-start nil
119 "String to insert to start a new comment, or nil if no comment syntax.")
121 (put 'comment-start
'safe-local-variable
'string-or-null-p
)
124 (defvar comment-start-skip nil
125 "Regexp to match the start of a comment plus everything up to its body.
126 If there are any \\(...\\) pairs and `comment-use-syntax' is nil,
127 the comment delimiter text is held to begin at the place matched
128 by the close of the first pair.")
130 (put 'comment-start-skip
'safe-local-variable
'stringp
)
133 (defvar comment-end-skip nil
134 "Regexp to match the end of a comment plus everything back to its body.")
136 (put 'comment-end-skip
'safe-local-variable
'stringp
)
139 (defvar comment-end
(purecopy "")
140 "String to insert to end a new comment.
141 Should be an empty string if comments are terminated by end-of-line.")
143 (put 'comment-end
'safe-local-variable
'stringp
)
146 (defvar comment-indent-function
'comment-indent-default
147 "Function to compute desired indentation for a comment.
148 This function is called with no args with point at the beginning
149 of the comment's starting delimiter and should return either the
150 desired column indentation, a range of acceptable
151 indentation (MIN . MAX), or nil.
152 If nil is returned, indentation is delegated to `indent-according-to-mode'.")
155 (defvar comment-insert-comment-function nil
156 "Function to insert a comment when a line doesn't contain one.
157 The function has no args.
159 Applicable at least in modes for languages like fixed-format Fortran where
160 comments always start in column zero.")
162 (defvar comment-region-function
'comment-region-default
163 "Function to comment a region.
164 Its args are the same as those of `comment-region', but BEG and END are
165 guaranteed to be correctly ordered. It is called within `save-excursion'.
167 Applicable at least in modes for languages like fixed-format Fortran where
168 comments always start in column zero.")
170 (defvar uncomment-region-function
'uncomment-region-default
171 "Function to uncomment a region.
172 Its args are the same as those of `uncomment-region', but BEG and END are
173 guaranteed to be correctly ordered. It is called within `save-excursion'.
175 Applicable at least in modes for languages like fixed-format Fortran where
176 comments always start in column zero.")
179 (defvar block-comment-start nil
)
180 (defvar block-comment-end nil
)
182 (defvar comment-quote-nested t
183 "Non-nil if nested comments should be quoted.
184 This should be locally set by each major mode if needed.")
186 (defvar comment-quote-nested-function
#'comment-quote-nested-default
187 "Function to quote nested comments in a region.
188 It takes the same arguments as `comment-quote-nested-default',
189 and is called with the buffer narrowed to a single comment.")
191 (defvar comment-continue nil
192 "Continuation string to insert for multiline comments.
193 This string will be added at the beginning of each line except the very
194 first one when commenting a region with a commenting style that allows
195 comments to span several lines.
196 It should generally have the same length as `comment-start' in order to
197 preserve indentation.
198 If it is nil a value will be automatically derived from `comment-start'
199 by replacing its first character with a space.")
201 (defvar comment-add
0
202 "How many more comment chars should be inserted by `comment-region'.
203 This determines the default value of the numeric argument of `comment-region'.
204 The `plain' comment style doubles this value.
206 This should generally stay 0, except for a few modes like Lisp where
207 it is 1 so that regions are commented with two or three semi-colons.")
210 (defconst comment-styles
211 '((plain nil nil nil nil
212 "Start in column 0 (do not indent), as in Emacs-20")
213 (indent-or-triple nil nil nil multi-char
214 "Start in column 0, but only for single-char starters")
215 (indent nil nil nil t
216 "Full comment per line, ends not aligned")
218 "Full comment per line, ends aligned")
220 "Full comment per line, ends aligned, + top and bottom")
221 (extra-line t nil t t
222 "One comment for all lines, end on a line by itself")
223 (multi-line t nil nil t
224 "One comment for all lines, end on last commented line")
226 "One comment for all lines, + top and bottom"))
227 "Comment region style definitions.
228 Each style is defined with a form (STYLE . (MULTI ALIGN EXTRA INDENT DOC)).
229 DOC should succinctly describe the style.
230 STYLE should be a mnemonic symbol.
231 MULTI specifies that comments are allowed to span multiple lines.
232 e.g. in C it comments regions as
238 if `comment-end' is empty, this has no effect.
240 ALIGN specifies that the `comment-end' markers should be aligned.
241 e.g. in C it comments regions as
247 if `comment-end' is empty, this has no effect, unless EXTRA is also set,
248 in which case the comment gets wrapped in a box.
250 EXTRA specifies that an extra line should be used before and after the
251 region to comment (to put the `comment-end' and `comment-start').
252 e.g. in C it comments regions as
260 if the comment style is not multi line, this has no effect, unless ALIGN
261 is also set, in which case the comment gets wrapped in a box.
263 INDENT specifies that the `comment-start' markers should not be put at the
264 left margin but at the current indentation of the region to comment.
265 If INDENT is `multi-char', that means indent multi-character
266 comment starters, but not one-character comment starters.")
269 (defcustom comment-style
'indent
270 "Style to be used for `comment-region'.
271 See `comment-styles' for a list of available styles."
272 :type
(if (boundp 'comment-styles
)
274 ,@(mapcar (lambda (s)
275 `(const :tag
,(format "%s: %s" (car s
) (nth 5 s
))
283 (defcustom comment-padding
(purecopy " ")
284 "Padding string that `comment-region' puts between comment chars and text.
285 Can also be an integer which will be automatically turned into a string
286 of the corresponding number of spaces.
288 Extra spacing between the comment characters and the comment text
289 makes the comment easier to read. Default is 1. nil means 0."
290 :type
'(choice string integer
(const nil
))
293 (defcustom comment-inline-offset
1
294 "Inline comments have to be preceded by at least this many spaces.
295 This is useful when style-conventions require a certain minimal offset.
296 Python's PEP8 for example recommends two spaces, so you could do:
298 \(add-hook \\='python-mode-hook
299 (lambda () (set (make-local-variable \\='comment-inline-offset) 2)))
301 See `comment-padding' for whole-line comments."
307 (defcustom comment-multi-line nil
308 "Non-nil means `comment-indent-new-line' continues comments.
309 That is, it inserts no new terminator or starter.
310 This affects `auto-fill-mode', which is the main reason to
311 customize this variable.
313 It also affects \\[indent-new-comment-line]. However, if you want this
314 behavior for explicit filling, you might as well use \\[newline-and-indent]."
319 (defcustom comment-empty-lines nil
320 "If nil, `comment-region' does not comment out empty lines.
321 If t, it always comments out empty lines.
322 If `eol' it only comments out empty lines if comments are
323 terminated by the end of line (i.e. `comment-end' is empty)."
324 :type
'(choice (const :tag
"Never" nil
)
325 (const :tag
"Always" t
)
326 (const :tag
"EOl-terminated" eol
))
333 (defun comment-string-strip (str beforep afterp
)
334 "Strip STR of any leading (if BEFOREP) and/or trailing (if AFTERP) space."
335 (string-match (concat "\\`" (if beforep
"\\s-*")
336 "\\(.*?\\)" (if afterp
"\\s-*\n?")
338 (match-string 1 str
))
340 (defun comment-string-reverse (s)
341 "Return the mirror image of string S, without any trailing space."
342 (comment-string-strip (concat (nreverse (string-to-list s
))) nil t
))
345 (defun comment-normalize-vars (&optional noerror
)
346 "Check and set up variables needed by other commenting functions.
347 All the `comment-*' commands call this function to set up various
348 variables, like `comment-start', to ensure that the commenting
349 functions work correctly. Lisp callers of any other `comment-*'
350 function should first call this function explicitly."
351 (unless (and (not comment-start
) noerror
)
352 (unless comment-start
353 (let ((cs (read-string "No comment syntax is defined. Use: ")))
354 (if (zerop (length cs
))
355 (error "No comment syntax defined")
356 (set (make-local-variable 'comment-start
) cs
)
357 (set (make-local-variable 'comment-start-skip
) cs
))))
358 ;; comment-use-syntax
359 (when (eq comment-use-syntax
'undecided
)
360 (set (make-local-variable 'comment-use-syntax
)
361 (let ((st (syntax-table))
363 (ce (if (string= "" comment-end
) "\n" comment-end
)))
364 ;; Try to skip over a comment using forward-comment
365 ;; to see if the syntax tables properly recognize it.
367 (set-syntax-table st
)
368 (insert cs
" hello " ce
)
369 (goto-char (point-min))
370 (and (forward-comment 1) (eobp))))))
372 (unless comment-padding
(setq comment-padding
0))
373 (when (integerp comment-padding
)
374 (setq comment-padding
(make-string comment-padding ?
)))
376 ;;(setq comment-start (comment-string-strip comment-start t nil))
377 ;;(setq comment-end (comment-string-strip comment-end nil t))
379 (unless (or comment-continue
(string= comment-end
""))
380 (set (make-local-variable 'comment-continue
)
381 (concat (if (string-match "\\S-\\S-" comment-start
) " " "|")
382 (substring comment-start
1)))
383 ;; Hasn't been necessary yet.
384 ;; (unless (string-match comment-start-skip comment-continue)
385 ;; (kill-local-variable 'comment-continue))
387 ;; comment-skip regexps
388 (unless (and comment-start-skip
389 ;; In case comment-start has changed since last time.
390 (string-match comment-start-skip comment-start
))
391 (set (make-local-variable 'comment-start-skip
)
392 (concat (unless (eq comment-use-syntax t
)
393 ;; `syntax-ppss' will detect escaping.
394 "\\(\\(^\\|[^\\\n]\\)\\(\\\\\\\\\\)*\\)")
396 (regexp-quote (comment-string-strip comment-start t t
))
397 ;; Let's not allow any \s- but only [ \t] since \n
398 ;; might be both a comment-end marker and \s-.
400 (unless (and comment-end-skip
401 ;; In case comment-end has changed since last time.
402 (string-match comment-end-skip
403 (if (string= "" comment-end
) "\n" comment-end
)))
404 (let ((ce (if (string= "" comment-end
) "\n"
405 (comment-string-strip comment-end t t
))))
406 (set (make-local-variable 'comment-end-skip
)
407 ;; We use [ \t] rather than \s- because we don't want to
408 ;; remove ^L in C mode when uncommenting.
409 (concat "[ \t]*\\(\\s>" (if comment-quote-nested
"" "+")
410 "\\|" (regexp-quote (substring ce
0 1))
411 (if (and comment-quote-nested
(<= (length ce
) 1)) "" "+")
412 (regexp-quote (substring ce
1))
415 (defun comment-quote-re (str unp
)
416 (concat (regexp-quote (substring str
0 1))
417 "\\\\" (if unp
"+" "*")
418 (regexp-quote (substring str
1))))
420 (defun comment-quote-nested (cs ce unp
)
421 "Quote or unquote nested comments.
422 If UNP is non-nil, unquote nested comment markers."
423 (setq cs
(comment-string-strip cs t t
))
424 (setq ce
(comment-string-strip ce t t
))
425 (when (and comment-quote-nested
427 (funcall comment-quote-nested-function cs ce unp
)))
429 (defun comment-quote-nested-default (cs ce unp
)
430 "Quote comment delimiters in the buffer.
431 It expects to be called with the buffer narrowed to a single comment.
432 It is used as a default for `comment-quote-nested-function'.
434 The arguments CS and CE are strings matching comment starting and
435 ending delimiters respectively.
437 If UNP is non-nil, comments are unquoted instead.
439 To quote the delimiters, a \\ is inserted after the first
440 character of CS or CE. If CE is a single character it will
442 (let ((re (concat (comment-quote-re ce unp
)
443 "\\|" (comment-quote-re cs unp
))))
444 (goto-char (point-min))
445 (while (re-search-forward re nil t
)
446 (goto-char (match-beginning 0))
448 (if unp
(delete-char 1) (insert "\\"))
449 (when (= (length ce
) 1)
450 ;; If the comment-end is a single char, adding a \ after that
451 ;; "first" char won't deactivate it, so we turn such a CE
452 ;; into !CS. I.e. for pascal, we turn } into !{
454 (when (string= (match-string 0) ce
)
455 (replace-match (concat "!" cs
) t t
))
456 (when (and (< (point-min) (match-beginning 0))
457 (string= (buffer-substring (1- (match-beginning 0))
461 (delete-char (- (match-end 0) (match-beginning 0)))
468 (defvar comment-use-global-state t
469 "Non-nil means that the global syntactic context is used.
470 More specifically, it means that `syntax-ppss' is used to find out whether
471 point is within a string or not. Major modes whose syntax is not faithfully
472 described by the syntax-tables (or where `font-lock-syntax-table' is radically
473 different from the main syntax table) can set this to nil,
474 then `syntax-ppss' cache won't be used in comment-related routines.")
476 (make-obsolete-variable 'comment-use-global-state
'comment-use-syntax
"24.4")
478 (defun comment-search-forward (limit &optional noerror
)
479 "Find a comment start between point and LIMIT.
480 Moves point to inside the comment and returns the position of the
481 comment-starter. If no comment is found, moves point to LIMIT
482 and raises an error or returns nil if NOERROR is non-nil.
484 Ensure that `comment-normalize-vars' has been called before you use this."
485 (if (not comment-use-syntax
)
486 (if (re-search-forward comment-start-skip limit noerror
)
487 (or (match-end 1) (match-beginning 0))
489 (unless noerror
(error "No comment")))
491 ;; Assume (at first) that pt is outside of any string.
492 (s (parse-partial-sexp pt
(or limit
(point-max)) nil nil
493 (if comment-use-global-state
(syntax-ppss pt
))
495 (when (and (nth 8 s
) (nth 3 s
) (not comment-use-global-state
))
496 ;; The search ended at eol inside a string. Try to see if it
497 ;; works better when we assume that pt is inside a string.
498 (setq s
(parse-partial-sexp
499 pt
(or limit
(point-max)) nil nil
500 (list nil nil nil
(nth 3 s
) nil nil nil nil
)
502 (if (or (not (and (nth 8 s
) (not (nth 3 s
))))
503 ;; Make sure the comment starts after PT.
505 (unless noerror
(error "No comment"))
506 ;; We found the comment.
509 (bol (line-beginning-position))
511 (while (and (null end
) (>= (point) bol
))
512 (if (looking-at comment-start-skip
)
513 (setq end
(min (or limit
(point-max)) (match-end 0)))
515 (goto-char (or end pos
))
518 (defun comment-search-backward (&optional limit noerror
)
519 "Find a comment start between LIMIT and point.
520 Moves point to inside the comment and returns the position of the
521 comment-starter. If no comment is found, moves point to LIMIT
522 and raises an error or returns nil if NOERROR is non-nil.
524 Ensure that `comment-normalize-vars' has been called before you use this."
525 ;; FIXME: If a comment-start appears inside a comment, we may erroneously
526 ;; stop there. This can be rather bad in general, but since
527 ;; comment-search-backward is only used to find the comment-column (in
528 ;; comment-set-column) and to find the comment-start string (via
529 ;; comment-beginning) in indent-new-comment-line, it should be harmless.
530 (if (not (re-search-backward comment-start-skip limit
'move
))
531 (unless noerror
(error "No comment"))
533 (let* ((end (match-end 0))
534 (cs (comment-search-forward end t
))
537 (progn (beginning-of-line)
538 (comment-search-backward limit noerror
))
539 (while (progn (goto-char cs
)
542 (setq cs
(comment-search-forward end t
))))
547 (defun comment-beginning ()
548 "Find the beginning of the enclosing comment.
549 Returns nil if not inside a comment, else moves point and returns
550 the same as `comment-search-backward'."
551 (if (and comment-use-syntax comment-use-global-state
)
552 (let ((state (syntax-ppss)))
554 (goto-char (nth 8 state
))
556 (when (save-restriction
557 ;; `comment-start-skip' sometimes checks that the
558 ;; comment char is not escaped. (Bug#16971)
559 (narrow-to-region (point) (point-max))
560 (looking-at comment-start-skip
))
561 (goto-char (match-end 0))))))
562 ;; Can't rely on the syntax table, let's guess based on font-lock.
563 (unless (eq (get-text-property (point) 'face
) 'font-lock-string-face
)
565 (cs (comment-search-backward nil t
)))
570 ;; For modes where comment-start and comment-end are the same,
571 ;; the search above may have found a `ce' rather than a `cs'.
572 (or (if comment-end-skip
(not (looking-at comment-end-skip
)))
573 ;; Maybe font-lock knows that it's a `cs'?
574 (eq (get-text-property (match-end 0) 'face
)
575 'font-lock-comment-face
)
576 (unless (eq (get-text-property (point) 'face
)
577 'font-lock-comment-face
)
578 ;; Let's assume it's a `cs' if we're on the same line.
579 (>= (line-end-position) pt
)))
580 ;; Make sure that PT is not past the end of the comment.
581 (if (comment-forward 1) (> (point) pt
) (eobp))))
586 (defun comment-forward (&optional n
)
587 "Skip forward over N comments.
588 Just like `forward-comment' but only for positive N
589 and can use regexps instead of syntax."
591 (if (< n
0) (error "No comment-backward")
592 (if comment-use-syntax
(forward-comment n
)
595 (if (or (forward-comment 1)
596 (and (looking-at comment-start-skip
)
597 (goto-char (match-end 0))
598 (re-search-forward comment-end-skip nil
'move
)))
602 (defun comment-enter-backward ()
603 "Move from the end of a comment to the end of its content.
604 Point is assumed to be just at the end of a comment."
607 (progn (backward-char) (skip-syntax-backward " "))
611 (narrow-to-region (line-beginning-position) (point))
612 (goto-char (point-min))
613 (re-search-forward (concat comment-end-skip
"\\'") nil t
)))
614 (goto-char (match-beginning 0)))
615 ;; comment-end-skip not found probably because it was not set
616 ;; right. Since \\s> should catch the single-char case, let's
617 ;; check that we're looking at a two-char comment ender.
618 ((not (or (<= (- (point-max) (line-beginning-position)) 1)
619 (zerop (logand (car (syntax-after (- (point) 1)))
620 ;; Here we take advantage of the fact that
621 ;; the syntax class " " is encoded to 0,
622 ;; so " 4" gives us just the 4 bit.
623 (car (string-to-syntax " 4"))))
624 (zerop (logand (car (syntax-after (- (point) 2)))
625 (car (string-to-syntax " 3"))))))
627 (skip-chars-backward (string (char-after)))
628 (skip-syntax-backward " "))
629 ;; No clue what's going on: maybe we're really not right after the
630 ;; end of a comment. Maybe we're at the "end" because of EOB rather
631 ;; than because of a marker.
632 (t (skip-syntax-backward " ")))))
639 (defun comment-indent-default ()
640 "Default for `comment-indent-function'."
641 (if (and (looking-at "\\s<\\s<\\(\\s<\\)?")
642 (or (match-end 1) (/= (current-column) (current-indentation))))
644 (when (or (/= (current-column) (current-indentation))
645 (and (> comment-add
0) (looking-at "\\s<\\(\\S<\\|\\'\\)")))
648 (defun comment-choose-indent (&optional indent
)
649 "Choose the indentation to use for a right-hand-side comment.
650 The criteria are (in this order):
651 - try to keep the comment's text within `comment-fill-column'.
652 - try to align with surrounding comments.
653 - prefer INDENT (or `comment-column' if nil).
654 Point is expected to be at the start of the comment."
655 (unless indent
(setq indent comment-column
))
659 (`(,lo .
,hi
) (setq min lo
) (setq max hi
)
660 (setq indent comment-column
))
661 (_ ;; Avoid moving comments past the fill-column.
662 (setq max
(+ (current-column)
663 (- (or comment-fill-column fill-column
)
664 (save-excursion (end-of-line) (current-column)))))
665 (setq min
(save-excursion
666 (skip-chars-backward " \t")
667 ;; Leave at least `comment-inline-offset' space after
668 ;; other nonwhite text on the line.
669 (if (bolp) 0 (+ comment-inline-offset
(current-column)))))))
671 (if (< max min
) (setq max min
))
672 ;; Don't move past the fill column.
673 (if (<= max indent
) (setq indent max
))
674 ;; We can choose anywhere between min..max.
675 ;; Let's try to align to a comment on the previous line.
677 (when (and (zerop (forward-line -
1))
678 (setq other
(comment-search-forward
679 (line-end-position) t
)))
680 (goto-char other
) (setq other
(current-column))))
681 (if (and other
(<= other max
) (>= other min
))
682 ;; There is a comment and it's in the range: bingo!
684 ;; Can't align to a previous comment: let's try to align to comments
685 ;; on the following lines, then. These have not been re-indented yet,
686 ;; so we can't directly align ourselves with them. All we do is to try
687 ;; and choose an indentation point with which they will be able to
690 (while (and (zerop (forward-line 1))
691 (setq other
(comment-search-forward
692 (line-end-position) t
)))
694 (let ((omax (+ (current-column)
695 (- (or comment-fill-column fill-column
)
696 (save-excursion (end-of-line) (current-column)))))
697 (omin (save-excursion (skip-chars-backward " \t")
698 (1+ (current-column)))))
699 (if (and (>= omax min
) (<= omin max
))
700 (progn (setq min
(max omin min
))
701 (setq max
(min omax max
)))
702 ;; Can't align with this anyway, so exit the loop.
703 (goto-char (point-max))))))
704 ;; Return the closest point to indent within min..max.
705 (max min
(min max indent
)))))
708 (defun comment-indent (&optional continue
)
709 "Indent this line's comment to `comment-column', or insert an empty comment.
710 If CONTINUE is non-nil, use the `comment-continue' markers if any."
712 (comment-normalize-vars)
713 (let* ((empty (save-excursion (beginning-of-line)
714 (looking-at "[ \t]*$")))
715 (starter (or (and continue comment-continue
)
716 (and empty block-comment-start
) comment-start
))
717 (ender (or (and continue comment-continue
"")
718 (and empty block-comment-end
) comment-end
)))
719 (unless starter
(error "No comment syntax defined"))
721 (let* ((eolpos (line-end-position))
722 (begpos (comment-search-forward eolpos t
))
724 (if (and comment-insert-comment-function
(not begpos
))
725 ;; If no comment and c-i-c-f is set, let it do everything.
726 (funcall comment-insert-comment-function
)
727 ;; An existing comment?
730 (if (and (not (looking-at "[\t\n ]"))
731 (looking-at comment-end-skip
))
732 ;; The comment is empty and we have skipped all its space
733 ;; and landed right before the comment-ender:
734 ;; Go back to the middle of the space.
735 (forward-char (/ (skip-chars-backward " \t") -
2)))
736 (setq cpos
(point-marker)))
737 ;; If none, insert one.
739 ;; Some `comment-indent-function's insist on not moving
740 ;; comments that are in column 0, so we first go to the
741 ;; likely target column.
742 (indent-to comment-column
)
743 ;; Ensure there's a space before the comment for things
744 ;; like sh where it matters (as well as being neater).
745 (unless (memq (char-before) '(nil ?
\n ?
\t ?\s
))
747 (setq begpos
(point))
749 (setq cpos
(point-marker))
752 ;; Compute desired indent.
753 (setq indent
(save-excursion (funcall comment-indent-function
)))
754 ;; If `indent' is nil and there's code before the comment, we can't
755 ;; use `indent-according-to-mode', so we default to comment-column.
756 (unless (or indent
(save-excursion (skip-chars-backward " \t") (bolp)))
757 (setq indent comment-column
))
759 ;; comment-indent-function refuses: delegate to line-indent.
760 (indent-according-to-mode)
761 ;; If the comment is at the right of code, adjust the indentation.
762 (unless (save-excursion (skip-chars-backward " \t") (bolp))
763 (setq indent
(comment-choose-indent indent
)))
764 ;; If that's different from comment's current position, change it.
765 (unless (= (current-column) indent
)
766 (delete-region (point) (progn (skip-chars-backward " \t") (point)))
769 (set-marker cpos nil
)))))
772 (defun comment-set-column (arg)
773 "Set the comment column based on point.
774 With no ARG, set the comment column to the current column.
775 With just minus as arg, kill any comment on this line.
776 With any other arg, set comment column to indentation of the previous comment
777 and then align or create a comment on this line at that column."
780 ((eq arg
'-
) (comment-kill nil
))
782 (comment-normalize-vars)
785 (comment-search-backward)
787 (goto-char (comment-search-forward (line-end-position)))
788 (setq comment-column
(current-column))
789 (message "Comment column set to %d" comment-column
))
791 (t (setq comment-column
(current-column))
792 (message "Comment column set to %d" comment-column
))))
795 (defun comment-kill (arg)
796 "Kill the first comment on this line, if any.
797 With prefix ARG, kill comments on that many lines starting with this one."
799 (comment-normalize-vars)
800 (dotimes (_i (prefix-numeric-value arg
))
803 (let ((cs (comment-search-forward (line-end-position) t
)))
806 (skip-syntax-backward " ")
809 (kill-region cs
(if (bolp) (1- (point)) (point)))
810 (indent-according-to-mode))))
811 (if arg
(forward-line 1))))
813 (defun comment-padright (str &optional n
)
814 "Construct a string composed of STR plus `comment-padding'.
815 It also adds N copies of the last non-whitespace chars of STR.
816 If STR already contains padding, the corresponding amount is
817 ignored from `comment-padding'.
819 If N is `re', a regexp is returned instead, that would match
820 the string for any N."
822 (when (and (stringp str
) (string-match "\\S-" str
))
823 ;; Separate the actual string from any leading/trailing padding
824 (string-match "\\`\\s-*\\(.*?\\)\\s-*\\'" str
)
825 (let ((s (match-string 1 str
)) ;actual string
826 (lpad (substring str
0 (match-beginning 1))) ;left padding
827 (rpad (concat (substring str
(match-end 1)) ;original right padding
828 (substring comment-padding
;additional right padding
829 (min (- (match-end 0) (match-end 1))
830 (length comment-padding
)))))
831 ;; We can only duplicate C if the comment-end has multiple chars
832 ;; or if comments can be nested, else the comment-end `}' would
833 ;; be turned into `}}}' where only the first ends the comment
834 ;; and the rest becomes bogus junk.
835 (multi (not (and comment-quote-nested
836 ;; comment-end is a single char
837 (string-match "\\`\\s-*\\S-\\s-*\\'" comment-end
)))))
838 (if (not (symbolp n
))
839 (concat lpad s
(when multi
(make-string n
(aref str
(1- (match-end 1))))) rpad
)
840 ;; construct a regexp that would match anything from just S
841 ;; to any possible output of this function for any N.
842 (concat (mapconcat (lambda (c) (concat (regexp-quote (string c
)) "?"))
843 lpad
"") ;padding is not required
845 (when multi
"+") ;the last char of S might be repeated
846 (mapconcat (lambda (c) (concat (regexp-quote (string c
)) "?"))
847 rpad
"")))))) ;padding is not required
849 (defun comment-padleft (str &optional n
)
850 "Construct a string composed of `comment-padding' plus STR.
851 It also adds N copies of the first non-whitespace chars of STR.
852 If STR already contains padding, the corresponding amount is
853 ignored from `comment-padding'.
855 If N is `re', a regexp is returned instead, that would match
856 the string for any N."
858 (when (and (stringp str
) (not (string= "" str
)))
859 ;; Only separate the left pad because we assume there is no right pad.
860 (string-match "\\`\\s-*" str
)
861 (let ((s (substring str
(match-end 0)))
862 (pad (concat (substring comment-padding
863 (min (- (match-end 0) (match-beginning 0))
864 (length comment-padding
)))
865 (match-string 0 str
)))
866 (c (aref str
(match-end 0))) ;the first non-space char of STR
867 ;; We can only duplicate C if the comment-end has multiple chars
868 ;; or if comments can be nested, else the comment-end `}' would
869 ;; be turned into `}}}' where only the first ends the comment
870 ;; and the rest becomes bogus junk.
871 (multi (not (and comment-quote-nested
872 ;; comment-end is a single char
873 (string-match "\\`\\s-*\\S-\\s-*\\'" comment-end
)))))
874 (if (not (symbolp n
))
875 (concat pad
(when multi
(make-string n c
)) s
)
876 ;; Construct a regexp that would match anything from just S
877 ;; to any possible output of this function for any N.
878 ;; We match any number of leading spaces because this regexp will
879 ;; be used for uncommenting where we might want to remove
880 ;; uncomment markers with arbitrary leading space (because
881 ;; they were aligned).
883 (if multi
(concat (regexp-quote (string c
)) "*"))
884 (regexp-quote s
))))))
887 (defun uncomment-region (beg end
&optional arg
)
888 "Uncomment each line in the BEG .. END region.
889 The numeric prefix ARG can specify a number of chars to remove from the
891 (interactive "*r\nP")
892 (comment-normalize-vars)
893 (when (> beg end
) (setq beg
(prog1 end
(setq end beg
))))
894 ;; Bind `comment-use-global-state' to nil. While uncommenting a region
895 ;; (which works a line at a time), a comment can appear to be
896 ;; included in a mult-line string, but it is actually not.
897 (let ((comment-use-global-state nil
))
899 (funcall uncomment-region-function beg end arg
))))
901 (defun uncomment-region-default (beg end
&optional arg
)
902 "Uncomment each line in the BEG .. END region.
903 The numeric prefix ARG can specify a number of chars to remove from the
906 (setq end
(copy-marker end
))
907 (let* ((numarg (prefix-numeric-value arg
))
908 (ccs comment-continue
)
909 (srei (comment-padright ccs
're
))
910 (csre (comment-padright comment-start
're
))
911 (sre (and srei
(concat "^\\s-*?\\(" srei
"\\)")))
913 (while (and (< (point) end
)
914 (setq spt
(comment-search-forward end t
)))
916 ;; Find the end of the comment.
919 (unless (or (comment-forward)
920 ;; Allow non-terminated comments.
922 (error "Can't find the comment end"))
925 (box-equal nil
)) ;Whether we might be using `=' for boxes.
927 (narrow-to-region spt ept
)
929 ;; Remove the comment-start.
931 (skip-syntax-backward " ")
932 ;; A box-comment starts with a looong comment-start marker.
933 (when (and (or (and (= (- (point) (point-min)) 1)
935 (looking-at "=\\{7\\}")
936 (not (eq (char-before (point-max)) ?
\n))
937 (skip-chars-forward "="))
938 (> (- (point) (point-min) (length comment-start
)) 7))
939 (> (count-lines (point-min) (point-max)) 2))
941 ;; Skip the padding. Padding can come from comment-padding and/or
942 ;; from comment-start, so we first check comment-start.
943 (if (or (save-excursion (goto-char (point-min)) (looking-at csre
))
944 (looking-at (regexp-quote comment-padding
)))
945 (goto-char (match-end 0)))
946 (when (and sre
(looking-at (concat "\\s-*\n\\s-*" srei
)))
947 (goto-char (match-end 0)))
948 (if (null arg
) (delete-region (point-min) (point))
949 (let ((opoint (point-marker)))
950 (skip-syntax-backward " ")
951 (delete-char (- numarg
))
952 (unless (and (not (bobp))
953 (save-excursion (goto-char (point-min))
954 (looking-at comment-start-skip
)))
955 ;; If there's something left but it doesn't look like
956 ;; a comment-start any more, just remove it.
957 (delete-region (point-min) opoint
))))
959 ;; Remove the end-comment (and leading padding and such).
960 (goto-char (point-max)) (comment-enter-backward)
961 ;; Check for special `=' used sometimes in comment-box.
962 (when (and box-equal
(not (eq (char-before (point-max)) ?
\n)))
964 ;; skip `=' but only if there are at least 7.
965 (when (> (skip-chars-backward "=") -
7) (goto-char pos
))))
966 (unless (looking-at "\\(\n\\|\\s-\\)*\\'")
967 (when (and (bolp) (not (bobp))) (backward-char))
968 (if (null arg
) (delete-region (point) (point-max))
969 (skip-syntax-forward " ")
971 (unless (or (eobp) (looking-at comment-end-skip
))
972 ;; If there's something left but it doesn't look like
973 ;; a comment-end any more, just remove it.
974 (delete-region (point) (point-max)))))
976 ;; Unquote any nested end-comment.
977 (comment-quote-nested comment-start comment-end t
)
979 ;; Eliminate continuation markers as well.
981 (let* ((cce (comment-string-reverse (or comment-continue
983 (erei (and box
(comment-padleft cce
're
)))
984 (ere (and erei
(concat "\\(" erei
"\\)\\s-*$"))))
985 (goto-char (point-min))
987 (if (and ere
(re-search-forward
988 ere
(line-end-position) t
))
989 (replace-match "" t t nil
(if (match-end 2) 2 1))
992 (re-search-forward sre
(line-end-position) t
))
993 (replace-match "" t t nil
(if (match-end 2) 2 1)))))
994 ;; Go to the end for the next comment.
995 (goto-char (point-max))))))
996 (set-marker end nil
))
998 (defun comment-make-bol-ws (len)
999 "Make a white-space string of width LEN for use at BOL.
1000 When `indent-tabs-mode' is non-nil, tab characters will be used."
1001 (if (and indent-tabs-mode
(> tab-width
0))
1002 (concat (make-string (/ len tab-width
) ?
\t)
1003 (make-string (% len tab-width
) ?
))
1004 (make-string len ?
)))
1006 (defun comment-make-extra-lines (cs ce ccs cce min-indent max-indent
&optional block
)
1007 "Make the leading and trailing extra lines.
1008 This is used for `extra-line' style (or `box' style if BLOCK is specified)."
1011 ;; Try to match CS and CE's content so they align aesthetically.
1013 (setq ce
(comment-string-strip ce t t
))
1014 (when (string-match "\\(.+\\).*\n\\(.*?\\)\\1" (concat ce
"\n" cs
))
1016 (max (- (match-end 2) (match-beginning 2) (match-beginning 0))
1019 (let* ((width (- max-indent min-indent
))
1020 (s (concat cs
"a=m" cce
))
1021 (e (concat ccs
"a=m" ce
))
1022 (c (if (string-match ".*\\S-\\S-" cs
)
1023 (aref cs
(1- (match-end 0)))
1024 (if (and (equal comment-end
"") (string-match ".*\\S-" cs
))
1025 (aref cs
(1- (match-end 0))) ?
=)))
1026 (re "\\s-*a=m\\s-*")
1027 (_ (string-match re s
))
1030 (make-string (+ width
(- (match-end 0)
1031 (match-beginning 0) lcs
3)) c
)))
1032 (setq cs
(replace-match fill t t s
))
1033 (when (and (not (string-match comment-start-skip cs
))
1034 (string-match "a=m" s
))
1035 ;; The whitespace around CS cannot be ignored: put it back.
1037 (setq fill
(make-string (- width lcs
) c
))
1038 (setq cs
(replace-match fill t t s
)))
1040 (setq ce
(replace-match fill t t e
))))
1041 (cons (concat cs
"\n" (comment-make-bol-ws min-indent
) ccs
)
1042 (concat cce
"\n" (comment-make-bol-ws (+ min-indent eindent
)) ce
))))
1044 (defmacro comment-with-narrowing
(beg end
&rest body
)
1045 "Execute BODY with BEG..END narrowing.
1046 Space is added (and then removed) at the beginning for the text's
1047 indentation to be kept as it was before narrowing."
1048 (declare (debug t
) (indent 2))
1049 (let ((bindent (make-symbol "bindent")))
1050 `(let ((,bindent
(save-excursion (goto-char ,beg
) (current-column))))
1052 (narrow-to-region ,beg
,end
)
1053 (goto-char (point-min))
1054 (insert (make-string ,bindent ?
))
1057 ;; remove the bindent
1059 (goto-char (point-min))
1060 (when (looking-at " *")
1061 (let ((n (min (- (match-end 0) (match-beginning 0)) ,bindent
)))
1063 (setq ,bindent
(- ,bindent n
))))
1067 (while (and (> ,bindent
0) (re-search-forward " *" e t
))
1068 (let ((n (min ,bindent
(- (match-end 0) (match-beginning 0) 1))))
1069 (goto-char (match-beginning 0))
1071 (setq ,bindent
(- ,bindent n
)))))))))))
1073 (defun comment-add (arg)
1074 "Compute the number of extra comment starter characters.
1075 \(Extra semicolons in Lisp mode, extra stars in C mode, etc.)
1076 If ARG is non-nil, just follow ARG.
1077 If the comment starter is multi-char, just follow ARG.
1078 Otherwise obey `comment-add'."
1079 (if (and (null arg
) (= (string-match "[ \t]*\\'" comment-start
) 1))
1081 (1- (prefix-numeric-value arg
))))
1083 (defun comment-region-internal (beg end cs ce
1084 &optional ccs cce block lines indent
)
1085 "Comment region BEG .. END.
1086 CS and CE are the comment start string and comment end string,
1087 respectively. CCS and CCE are the comment continuation strings
1088 for the start and end of lines, respectively (default to CS and CE).
1089 BLOCK indicates that end of lines should be marked with either CCE,
1090 CE or CS \(if CE is empty) and that those markers should be aligned.
1091 LINES indicates that an extra lines will be used at the beginning
1092 and end of the region for CE and CS.
1093 INDENT indicates to put CS and CCS at the current indentation of
1094 the region rather than at left margin."
1095 ;;(assert (< beg end))
1096 (let ((no-empty (not (or (eq comment-empty-lines t
)
1097 (and comment-empty-lines
(zerop (length ce
))))))
1099 ;; Sanitize CE and CCE.
1100 (if (and (stringp ce
) (string= "" ce
)) (setq ce nil
))
1101 (setq ce-sanitized ce
)
1102 (if (and (stringp cce
) (string= "" cce
)) (setq cce nil
))
1103 ;; If CE is empty, multiline cannot be used.
1104 (unless ce
(setq ccs nil cce nil
))
1105 ;; Should we mark empty lines as well ?
1106 (if (or ccs block lines
) (setq no-empty nil
))
1107 ;; Make sure we have end-markers for BLOCK mode.
1108 (when block
(unless ce
(setq ce
(comment-string-reverse cs
))))
1109 ;; If BLOCK is not requested, we don't need CCE.
1110 (unless block
(setq cce nil
))
1111 ;; Continuation defaults to the same as CS and CE.
1112 (unless ccs
(setq ccs cs cce ce
))
1116 ;; If the end is not at the end of a line and the comment-end
1117 ;; is implicit (i.e. a newline), explicitly insert a newline.
1118 (unless (or ce-sanitized
(eolp)) (insert "\n") (indent-according-to-mode))
1119 (comment-with-narrowing beg end
1120 (let ((min-indent (point-max))
1122 (goto-char (point-min))
1123 ;; Quote any nested comment marker
1124 (comment-quote-nested comment-start comment-end nil
)
1126 ;; Loop over all lines to find the needed indentations.
1127 (goto-char (point-min))
1130 (unless (looking-at "[ \t]*$")
1131 (setq min-indent
(min min-indent
(current-indentation))))
1133 (setq max-indent
(max max-indent
(current-column)))
1134 (not (or (eobp) (progn (forward-line) nil
)))))
1137 (+ max-indent
(max (length cs
) (length ccs
))
1138 ;; Inserting ccs can change max-indent by (1- tab-width)
1139 ;; but only if there are TABs in the boxed text, of course.
1140 (if (save-excursion (goto-char beg
)
1141 (search-forward "\t" end t
))
1143 (unless indent
(setq min-indent
0))
1145 ;; make the leading and trailing lines if requested
1147 ;; Trim trailing whitespace from cs if there's some.
1148 (setq cs
(string-trim-right cs
))
1151 (comment-make-extra-lines
1152 cs ce ccs cce min-indent max-indent block
)))
1153 (setq cs
(car csce
))
1154 (setq ce
(cdr csce
))))
1156 (goto-char (point-min))
1157 ;; Loop over all lines from BEG to END.
1160 (unless (and no-empty
(looking-at "[ \t]*$"))
1161 (move-to-column min-indent t
)
1162 (insert cs
) (setq cs ccs
) ;switch to CCS after the first line
1164 (if (eobp) (setq cce ce
))
1166 (when block
(move-to-column max-indent t
))
1169 (not (or (eobp) (progn (forward-line) nil
))))))))))
1172 (defun comment-region (beg end
&optional arg
)
1173 "Comment or uncomment each line in the region.
1174 With just \\[universal-argument] prefix arg, uncomment each line in region BEG .. END.
1175 Numeric prefix ARG means use ARG comment characters.
1176 If ARG is negative, delete that many comment characters instead.
1178 The strings used as comment starts are built from `comment-start'
1179 and `comment-padding'; the strings used as comment ends are built
1180 from `comment-end' and `comment-padding'.
1182 By default, the `comment-start' markers are inserted at the
1183 current indentation of the region, and comments are terminated on
1184 each line (even for syntaxes in which newline does not end the
1185 comment and blank lines do not get comments). This can be
1186 changed with `comment-style'."
1187 (interactive "*r\nP")
1188 (comment-normalize-vars)
1189 (if (> beg end
) (let (mid) (setq mid beg beg end end mid
)))
1191 ;; FIXME: maybe we should call uncomment depending on ARG.
1192 (funcall comment-region-function beg end arg
)))
1194 (defun comment-region-default (beg end
&optional arg
)
1195 (let* ((numarg (prefix-numeric-value arg
))
1196 (style (cdr (assoc comment-style comment-styles
)))
1197 (lines (nth 2 style
))
1198 (block (nth 1 style
))
1199 (multi (nth 0 style
)))
1201 ;; We use `chars' instead of `syntax' because `\n' might be
1202 ;; of end-comment syntax rather than of whitespace syntax.
1203 ;; sanitize BEG and END
1204 (goto-char beg
) (skip-chars-forward " \t\n\r") (beginning-of-line)
1205 (setq beg
(max beg
(point)))
1206 (goto-char end
) (skip-chars-backward " \t\n\r") (end-of-line)
1207 (setq end
(min end
(point)))
1208 (if (>= beg end
) (error "Nothing to comment"))
1214 (progn (goto-char beg
) (beginning-of-line)
1215 (skip-syntax-forward " ")
1217 (progn (goto-char end
) (end-of-line) (skip-syntax-backward " ")
1219 (or block
(not (string= "" comment-end
)))
1220 (or block
(progn (goto-char beg
) (re-search-forward "$" end t
)))))
1222 ;; don't add end-markers just because the user asked for `block'
1223 (unless (or lines
(string= "" comment-end
)) (setq block nil
))
1226 ((consp arg
) (uncomment-region beg end
))
1227 ((< numarg
0) (uncomment-region beg end
(- numarg
)))
1229 (let ((multi-char (/= (string-match "[ \t]*\\'" comment-start
) 1))
1231 (if (eq (nth 3 style
) 'multi-char
)
1234 (setq indent multi-char
1235 ;; Triple if we will put the comment starter at the margin
1236 ;; and the first line of the region isn't indented
1237 ;; at least two spaces.
1238 triple
(and (not multi-char
) (looking-at "\t\\| "))))
1239 (setq indent
(nth 3 style
)))
1241 ;; In Lisp and similar modes with one-character comment starters,
1242 ;; double it by default if `comment-add' says so.
1243 ;; If it isn't indented, triple it.
1244 (if (and (null arg
) (not multi-char
))
1245 (setq numarg
(* comment-add
(if triple
2 1)))
1246 (setq numarg
(1- (prefix-numeric-value arg
))))
1248 (comment-region-internal
1250 (let ((s (comment-padright comment-start numarg
)))
1251 (if (string-match comment-start-skip s
) s
1252 (comment-padright comment-start
)))
1253 (let ((s (comment-padleft comment-end numarg
)))
1254 (and s
(if (string-match comment-end-skip s
) s
1255 (comment-padright comment-end
))))
1256 (if multi
(comment-padright comment-continue numarg
))
1258 (comment-padleft (comment-string-reverse comment-continue
) numarg
))
1264 (defun comment-box (beg end
&optional arg
)
1265 "Comment out the BEG .. END region, putting it inside a box.
1266 The numeric prefix ARG specifies how many characters to add to begin- and
1267 end- comment markers additionally to what variable `comment-add' already
1269 (interactive "*r\np")
1270 (comment-normalize-vars)
1271 (let ((comment-style (if (cadr (assoc comment-style comment-styles
))
1273 (comment-region beg end
(+ comment-add arg
))))
1275 (defun comment-only-p (beg end
)
1276 "Return non-nil if the text between BEG and END is all comments."
1279 (comment-forward (point-max))
1283 (defun comment-or-uncomment-region (beg end
&optional arg
)
1284 "Call `comment-region', unless the region only consists of comments,
1285 in which case call `uncomment-region'. If a prefix arg is given, it
1286 is passed on to the respective function."
1287 (interactive "*r\nP")
1288 (comment-normalize-vars)
1289 (funcall (if (comment-only-p beg end
)
1290 'uncomment-region
'comment-region
)
1294 (defun comment-dwim (arg)
1295 "Call the comment command you want (Do What I Mean).
1296 If the region is active and `transient-mark-mode' is on, call
1297 `comment-region' (unless it only consists of comments, in which
1298 case it calls `uncomment-region').
1299 Else, if the current line is empty, call `comment-insert-comment-function'
1300 if it is defined, otherwise insert a comment and indent it.
1301 Else if a prefix ARG is specified, call `comment-kill'.
1302 Else, call `comment-indent'.
1303 You can configure `comment-style' to change the way regions are commented."
1305 (comment-normalize-vars)
1307 (comment-or-uncomment-region (region-beginning) (region-end) arg
)
1308 (if (save-excursion (beginning-of-line) (not (looking-at "\\s-*$")))
1309 ;; FIXME: If there's no comment to kill on this line and ARG is
1310 ;; specified, calling comment-kill is not very clever.
1311 (if arg
(comment-kill (and (integerp arg
) arg
)) (comment-indent))
1312 ;; Inserting a comment on a blank line. comment-indent calls
1313 ;; c-i-c-f if needed in the non-blank case.
1314 (if comment-insert-comment-function
1315 (funcall comment-insert-comment-function
)
1316 (let ((add (comment-add arg
)))
1317 ;; Some modes insist on keeping column 0 comment in column 0
1318 ;; so we need to move away from it before inserting the comment.
1319 (indent-according-to-mode)
1320 (insert (comment-padright comment-start add
))
1322 (unless (string= "" comment-end
)
1323 (insert (comment-padleft comment-end add
)))
1324 (indent-according-to-mode)))))))
1327 (defcustom comment-auto-fill-only-comments nil
1328 "Non-nil means to only auto-fill inside comments.
1329 This has no effect in modes that do not define a comment syntax."
1333 (defun comment-valid-prefix-p (prefix compos
)
1334 "Check that the adaptive fill prefix is consistent with the context.
1335 PREFIX is the prefix (presumably guessed by `adaptive-fill-mode').
1336 COMPOS is the position of the beginning of the comment we're in, or nil
1337 if we're not inside a comment."
1338 ;; This consistency checking is mostly needed to workaround the limitation
1339 ;; of auto-fill-mode whose paragraph-determination doesn't pay attention
1340 ;; to comment boundaries.
1342 ;; We're not inside a comment: the prefix shouldn't match
1343 ;; a comment-starter.
1344 (not (and comment-start comment-start-skip
1345 (string-match comment-start-skip prefix
)))
1347 ;; Accept any prefix if the current comment is not EOL-terminated.
1348 (save-excursion (goto-char compos
) (comment-forward) (not (bolp)))
1349 ;; Accept any prefix that starts with the same comment-start marker
1350 ;; as the current one.
1351 (when (string-match (concat "\\`[ \t]*\\(?:" comment-start-skip
"\\)")
1353 (let ((prefix-com (comment-string-strip (match-string 0 prefix
) nil t
)))
1354 (string-match "\\`[ \t]*" prefix-com
)
1355 (let* ((prefix-space (match-string 0 prefix-com
))
1356 (prefix-indent (string-width prefix-space
))
1357 (prefix-comstart (substring prefix-com
(match-end 0))))
1360 ;; The comstart marker is the same.
1361 (and (looking-at (regexp-quote prefix-comstart
))
1362 ;; The indentation as well.
1363 (or (= prefix-indent
1364 (- (current-column) (current-left-margin)))
1365 ;; Check the indentation in two different ways, just
1366 ;; to try and avoid most of the potential funny cases.
1368 (buffer-substring (point)
1369 (progn (move-to-left-margin)
1374 (defun comment-indent-new-line (&optional soft
)
1375 "Break line at point and indent, continuing comment if within one.
1376 This indents the body of the continued comment
1377 under the previous comment line.
1379 This command is intended for styles where you write a comment per line,
1380 starting a new comment (and terminating it if necessary) on each line.
1381 If you want to continue one comment across several lines, use \\[newline-and-indent].
1383 If a fill column is specified, it overrides the use of the comment column
1384 or comment indentation.
1386 The inserted newline is marked hard if variable `use-hard-newlines' is true,
1387 unless optional argument SOFT is non-nil."
1389 (comment-normalize-vars t
)
1391 ;; If we are not inside a comment and we only auto-fill comments,
1392 ;; don't do anything (unless no comment syntax is defined).
1393 (unless (and comment-start
1394 comment-auto-fill-only-comments
1395 (not (called-interactively-p 'interactive
))
1396 (not (save-excursion
1397 (prog1 (setq compos
(comment-beginning))
1398 (setq comin
(point))))))
1400 ;; Now we know we should auto-fill.
1401 ;; Insert the newline before removing empty space so that markers
1402 ;; get preserved better.
1403 (if soft
(insert-and-inherit ?
\n) (newline 1))
1404 (save-excursion (forward-char -
1) (delete-horizontal-space))
1405 (delete-horizontal-space)
1407 (if (and fill-prefix
(not adaptive-fill-mode
))
1408 ;; Blindly trust a non-adaptive fill-prefix.
1410 (indent-to-left-margin)
1411 (insert-before-markers-and-inherit fill-prefix
))
1413 ;; If necessary check whether we're inside a comment.
1414 (unless (or compos
(null comment-start
))
1417 (setq compos
(comment-beginning))
1418 (setq comin
(point))))
1421 ;; If there's an adaptive prefix, use it unless we're inside
1422 ;; a comment and the prefix is not a comment starter.
1424 (comment-valid-prefix-p fill-prefix compos
))
1425 (indent-to-left-margin)
1426 (insert-and-inherit fill-prefix
))
1427 ;; If we're not inside a comment, just try to indent.
1428 ((not compos
) (indent-according-to-mode))
1430 (let* ((comstart (buffer-substring compos comin
))
1432 (string-match (regexp-quote (comment-string-strip
1436 (if normalp comment-end
1437 ;; The comment starter is not the normal comment-start
1438 ;; so we can't just use comment-end.
1441 (if (not (comment-forward)) comment-end
1442 (comment-string-strip
1444 (save-excursion (comment-enter-backward) (point))
1447 (if (and comment-multi-line
(> (length comend
) 0))
1448 (indent-according-to-mode)
1449 (insert-and-inherit ?
\n)
1451 (let* ((comment-column
1452 ;; The continuation indentation should be somewhere
1453 ;; between the current line's indentation (plus 2 for
1454 ;; good measure) and the current comment's indentation,
1455 ;; with a preference for comment-column.
1457 ;; FIXME: use prev line's info rather than first
1460 (min (current-column)
1462 (+ 2 (current-indentation))))))
1463 (comment-indent-function
1464 ;; If the previous comment is on its own line, then
1465 ;; reuse its indentation unconditionally.
1466 ;; Important for modes like Python/Haskell where
1467 ;; auto-indentation is unreliable.
1468 (if (save-excursion (goto-char compos
)
1469 (skip-chars-backward " \t")
1471 (lambda () comment-column
) comment-indent-function
))
1472 (comment-start comstart
)
1473 (comment-end comend
)
1474 (continuep (or comment-multi-line
1475 (cadr (assoc comment-style
1477 ;; Recreate comment-continue from comment-start.
1478 ;; FIXME: wrong if comment-continue was set explicitly!
1479 ;; FIXME: use prev line's continuation if available.
1480 (comment-continue nil
))
1481 (comment-indent continuep
))
1485 (let ((comend (buffer-substring pt
(point))))
1486 ;; The 1+ is to make sure we delete the \n inserted above.
1487 (delete-region pt
(1+ (point)))
1489 (insert comend
))))))))))))
1492 (defun comment-line (n)
1493 "Comment or uncomment current line and leave point after it.
1494 With positive prefix, apply to N lines including current one.
1495 With negative prefix, apply to -N lines above. Also, further
1496 consecutive invocations of this command will inherit the negative
1499 If region is active, comment lines in active region instead.
1500 Unlike `comment-dwim', this always comments whole lines."
1503 (comment-or-uncomment-region
1505 (goto-char (region-beginning))
1506 (line-beginning-position))
1508 (goto-char (region-end))
1509 (line-end-position)))
1510 (when (and (eq last-command
'comment-line-backward
)
1514 (list (line-beginning-position)
1515 (goto-char (line-end-position n
)))))
1516 (comment-or-uncomment-region
1518 (apply #'max range
)))
1520 (back-to-indentation)
1521 (unless (natnump n
) (setq this-command
'comment-line-backward
))))
1523 (provide 'newcomment
)
1525 ;;; newcomment.el ends here