pos-tag-hightlight: 加粗英文中的动词和介词以方便阅读

@Deeson 过来看看

效果图:

1 个赞

我在 原贴中 说用 hi-lock-mode可以简单实现, 代码已经有了,是chatGPT写的,也发出来供大家参考

(defface my-bold-face
  '((t (:weight bold)))
  "A bold face for custom highlighting.")
(highlight-regexp "\\b\\(is\\|are\\|was\\|were\\|be\\|being\\|been\\|have\\|has\\|had\\|do\\|does\\|did\\|will\\|shall\\|can\\|may\\|must\\|might\\|could\\|would\\|should\\)\\b" 'my-bold-face)

(highlight-regexp "\\b\\(in\\|on\\|at\\|by\\|for\\|with\\|about\\|against\\|between\\|into\\|through\\|during\\|before\\|after\\|above\\|below\\|to\\|from\\|up\\|down\\|over\\|under\\|again\\|further\\|then\\|once\\)\\b" 'my-bold-face)

嗯,也是个方法,我之前也实现了一版,但发现动名词这个词性在英语里用得很多,还是有必要加一个库,来进行分辨。

这是方法不错,不需要Python

确实不错! :laughing: