ผมใช้โค้ดด้านล่างและผูกไปyf/replace-or-delete-pair
M-D
ตัวอย่างการใช้งาน: ด้วยจุดบน(
ฉันตีM-D [
และ()
ทั้งคู่กลายเป็น[]
คู่ หากคุณกดM-D RET
แทนทั้งคู่จะถูกลบออก
รหัสนี้ใช้ตารางไวยากรณ์ซึ่งหมายความว่าสำหรับบางคู่คุณจะต้องระบุการปิด paren ด้วยตัวคุณเอง เช่นใน html โหมด()
สามารถถูกแทนที่ด้วยโดยการกดปุ่ม<>
M-D <
อย่างไรก็ตามในหลายโหมด<>
ไม่ใช่คู่ที่รู้จักและM-D <
จะพูดว่า "ไม่ทราบวิธีปิด <" คุณสามารถพิมพ์>
ได้
(defun yf/replace-or-delete-pair (open)
"Replace pair at point by OPEN and its corresponding closing character.
The closing character is lookup in the syntax table or asked to
the user if not found."
(interactive
(list
(read-char
(format "Replacing pair %c%c by (or hit RET to delete pair):"
(char-after)
(save-excursion
(forward-sexp 1)
(char-before))))))
(if (memq open '(?\n ?\r))
(delete-pair)
(let ((close (cdr (aref (syntax-table) open))))
(when (not close)
(setq close
(read-char
(format "Don't know how to close character %s (#%d) ; please provide a closing character: "
(single-key-description open 'no-angles)
open))))
(yf/replace-pair open close))))
(defun yf/replace-pair (open close)
"Replace pair at point by respective chars OPEN and CLOSE.
If CLOSE is nil, lookup the syntax table. If that fails, signal
an error."
(let ((close (or close
(cdr-safe (aref (syntax-table) open))
(error "No matching closing char for character %s (#%d)"
(single-key-description open t)
open)))
(parens-require-spaces))
(insert-pair 1 open close))
(delete-pair)
(backward-char 1))
\bigl(...\bigr)
การ\Bigl(...\Bigr)
ฯลฯ