Consulta de pesquisa e linha de comentário?


9

Espero descobrir como fazer uma pesquisa de consulta que irá comentar uma linha em vez de substituir a consulta. Ou seja, faça uma pesquisa de consulta interativa e, se eu disser que sim, comente a linha em que a correspondência está.

Este comando existe? Se não, como eu escreveria? Eu sou novo no elisp e não sei como programar minhas próprias funções.


8
Use query-replace-regexp. Substitua a linha pela linha prefixada com um início de comentário.
Drew

Respostas:


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))

Caso a linha de comentário não esteja disponível, aqui em um newcomment.el recente:

(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))))

Obrigado por isso, o que você retornou aqui "A definição da função do símbolo é nula: linha de comentário"
Jaime Arturo Gomez

@JaimeArturoGomez Parece ter sido apresentado recentemente. Forneceu uma cópia.
Andreas Röhler
Ao utilizar nosso site, você reconhece que leu e compreendeu nossa Política de Cookies e nossa Política de Privacidade.
Licensed under cc by-sa 3.0 with attribution required.