Questions tagged «syntax-table»

5
如何将下划线视为单词的一部分?
我使用Emacs + evil模式。 当我将光标放在e(正常状态)诸如,的大块文本中abc_def_ghi时ciw(更改内部字词)仅更改def字符串的一部分,而Vim会更改整个字符串abc_def_ghi。 我evil该如何像Vim一样强迫下划线(即作为单词的一部分)?

3
如何检测当前字符是否是该主要模式的注释字符?
我正在研究将下一行拉到当前行的这个小功能。我想添加一个功能,以便如果当前行是行注释,而下一行也是行注释,则在“上拉”操作后将删除注释字符。 例: 之前 ;; 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 …

2
什么是字符串围栏或评论围栏?
的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. 什么是围栏,什么时候可以使用?我在信息手册中找不到任何内容。
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.