我正在研究将下一行拉到当前行的这个小功能。我想添加一个功能,以便如果当前行是行注释,而下一行也是行注释,则在“上拉”操作后将删除注释字符。 例: 之前 ;; comment 1▮ ;; comment 2 呼唤 M-x modi/pull-up-line 后 ;; comment 1▮comment 2 请注意,;;删除了以前的字符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 …
的docstring modify-syntax-entry表示以下内容: (modify-syntax-entry CHAR NEWENTRY &optional SYNTAX-TABLE) ... The first character of NEWENTRY should be one of the following: ... / character-quote. @ inherit from parent table. | generic string fence. ! generic comment fence. 什么是围栏,什么时候可以使用?我在信息手册中找不到任何内容。