如何指示Emacs自动大写模式自动小写任何后面的单词,例如或者是?

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何指示Emacs自动大写模式自动小写任何后面的单词,例如或者是?相关的知识,希望对你有一定的参考价值。

Emacs auto-capitalize-mode错误解释单词i.e.e.g.来表示句子的结尾,因此错误地将跟随它们的任何单词大写。

有没有人有一个可以通过输入egie来调用的函数,它会插入字符e.g.i.e.然后自动小写下一个输入的单词?

奖励:做同样的事情......对于省略号。

答案

将其添加到.emacs:

(setq auto-capitalize-predicate
      (lambda () (not (looking-back
           "\([Ee]\.g\|[Ii]\.e\)\.[^.]*" (- (point) 20)))))

请记住,如果你的auto-capitalize-words变量设置为包含“I”,则ie in ie将被大写为I.e。

(setq auto-capitalize-words '())这使它成为一无所获。

这是一个也处理省略号的版本:

(setq auto-capitalize-predicate
      (lambda () (not (looking-back
           "\([Ee]\.g\|[Ii]\.e\|\.\.\)\.[^.]*" (- (point) 20)))))

但是你可能想要研究一些将三个句点变为unicode省略号的缩写魔术。由你决定。

另一答案

来自auto-capitalize.el:

;; To prevent a word in the `auto-capitalize-words' list from being
;; capitalized or upcased in a particular context (e.g.
;; "GNU.emacs.sources"), insert the following whitespace or
;; punctuation character with `M-x quoted-insert' (e.g. `gnu C-q .').

我用它,这是一个舒适的方法。

以上是关于如何指示Emacs自动大写模式自动小写任何后面的单词,例如或者是?的主要内容,如果未能解决你的问题,请参考以下文章

WORD粘贴英文时如何不自动变大小写

excel金额如何转为大写?

emacs 中的术语 :: 如何关闭“自动换行”

fastreport怎么让英文小写自动转换成大写

UITextField 成为第一响应者时自动大写键盘

如何在emacs中自动关闭自动加密模式缓冲区?