Pracuję nad tą małą funkcją, która wyciąga następny wiersz do bieżącego wiersza. Chcę dodać funkcjonalność, aby jeśli bieżący wiersz był komentarzem do wiersza, a następny wiersz był również komentarzem do wiersza, wówczas znaki komentarza są usuwane po akcji „pull-up”.
Przykład:
Przed
;; comment 1▮
;; comment 2
Powołanie M-x modi/pull-up-line
Po
;; comment 1▮comment 2
Pamiętaj, że ;;
znaki zostały usunięte wcześniej comment 2
.
(defun modi/pull-up-line ()
"Join the following line onto the current one (analogous to `C-e', `C-d') or
`C-u M-^' or `C-u M-x join-line'.
If the current line is a comment and the pulled-up line is also a comment,
remove the comment characters from that line."
(interactive)
(join-line -1)
;; If the current line is a comment
(when (nth 4 (syntax-ppss))
;; Remove the comment prefix chars from the pulled-up line if present
(save-excursion
(forward-char)
(while (looking-at "/\\|;\\|#")
(delete-forward-char 1))
(when (looking-at "\\s-")
(delete-forward-char 1)))))
Powyższa funkcja działa, ale na razie, niezależnie od głównego trybu, rozważy /
lub ;
lub #
jako komentarz charakterze: (looking-at "/\\|;\\|#")
.
Chciałbym uczynić tę linię bardziej inteligentną; specyficzne dla trybu głównego.
Rozwiązanie
Dzięki rozwiązaniu @ericstokes uważam, że poniżej opisano teraz wszystkie moje przypadki użycia :)
(defun modi/pull-up-line ()
"Join the following line onto the current one (analogous to `C-e', `C-d') or
`C-u M-^' or `C-u M-x join-line'.
If the current line is a comment and the pulled-up line is also a comment,
remove the comment characters from that line."
(interactive)
(join-line -1)
;; If the current line is a comment
(when (nth 4 (syntax-ppss))
;; Remove the comment prefix chars from the pulled-up line if present
(save-excursion
(forward-char)
;; Delete all comment-start or space characters
(while (looking-at (concat "\\s<" ; comment-start char as per syntax table
"\\|" (substring comment-start 0 1) ; first char of `comment-start'
"\\|" "\\s-")) ; extra spaces
(delete-forward-char 1)))))
comment-start
i comment-end
ustawione na „/ *” i „* /” w c-mode
(ale nie c++-mode
). I c-comment-start-regexp
to pasuje do obu stylów. Usuwasz znaki końcowe, a następnie początek po dołączeniu. Ale myślę, że moje rozwiązaniem byłoby uncomment-region
, i niech Emacs przejmować się komentarz postać jest co. join-line
comment-region
/* ... */
)?