Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在Emacs中,我Ctrl+s用来遍历文本中的字符串。
Emacs
Ctrl+s
现在,我对 string 感兴趣abc,只有当它位于行尾时。我们也可以说是一个abc跟在行尾后面的字符串。
abc
有谁知道我该如何搜索Emacs?
C-M-s abc$
abc$
C-M-s来电isearch-forward-regexp
C-M-s
isearch-forward-regexp
C-s abc如果您在意识到需要正则表达式搜索之前已经键入,只需键入M-r,isearch 就会切换到使用正则表达式。
或者,您可以(在大多数情况下)使用: C-s abc C-qC-j
就像C-qC-j在搜索模式中输入换行符的方法一样(作为 a quoted-insertof C-j)。
quoted-insert
C-j