Шукати рядок пошуку та коментарів?


9

Я сподіваюся зрозуміти, як зробити пошук запиту, який буде коментувати рядок замість заміни запиту. Тобто зробіть інтерактивний пошук запитів, і якщо я скажу «так», прокоментуйте рядок, у якому відповідає збіг.

Чи існує ця команда? Якщо ні, то як би я це написав? Я новачок у elisp і не знаю, як запрограмувати власні функції.


8
Використовуйте query-replace-regexp. Замініть рядок на рядок з префіксом із початком коментаря.
Дрю

Відповіді:


1
(defun my-comment-matching-line ()
  (interactive "*")
  (call-interactively 'search-forward)
  (beginning-of-line)
  ;; don't comment the region maybe
  (push-mark)
  (comment-line 1))

Якщо рядок коментарів не буде доступний, ось з недавнього newcomment.el:

(defun comment-line (n)
  "Comment or uncomment current line and leave point after it.
With positive prefix, apply to N lines including current one.
With negative prefix, apply to -N lines above.  Also, further
consecutive invocations of this command will inherit the negative
argument.

If region is active, comment lines in active region instead.
Unlike `comment-dwim', this always comments whole lines."
  (interactive "p")
  (if (use-region-p)
      (comment-or-uncomment-region
       (save-excursion
         (goto-char (region-beginning))
         (line-beginning-position))
       (save-excursion
         (goto-char (region-end))
         (line-end-position)))
    (when (and (eq last-command 'comment-line-backward)
               (natnump n))
      (setq n (- n)))
    (let ((range
           (list (line-beginning-position)
                 (goto-char (line-end-position n)))))
      (comment-or-uncomment-region
       (apply #'min range)
       (apply #'max range)))
    (forward-line 1)
    (back-to-indentation)
    (unless (natnump n) (setq this-command 'comment-line-backward))))

Дякую за це, що ви тут повернули "Визначення функції символу недійсне: лінія коментарів"
Jaime Arturo Gomez

@JaimeArturoGomez Здається, було представлено нещодавно. Надав копію.
Андреас Рьолер
Використовуючи наш веб-сайт, ви визнаєте, що прочитали та зрозуміли наші Політику щодо файлів cookie та Політику конфіденційності.
Licensed under cc by-sa 3.0 with attribution required.