How to distinguish Python strings and docstrings in an emacs buffer?

感情迁移 提交于 2019-12-02 13:16:55

问题


If I have just

(set-face-foreground 'font-lock-comment-face "red")
(set-face-foreground 'font-lock-string-face "green")

in my .emacs, emacs uses the same font-lock for Python strings and for Python docstrings.

What should I add to my .emacs so that comments, strings, and docstrings are distinguished?

This answer suggests that it is possible to do so.


回答1:


Built-in python.el provides font-lock-doc-face via python-font-lock-syntactic-face-function.

python-mode.el uses font-lock-doc-face, given py-use-font-lock-doc-face-p is t. You can customize that variable.




回答2:


The face used for doc strings should be font-lock-doc-face, so just customize it to look different.



来源:https://stackoverflow.com/questions/27317396/how-to-distinguish-python-strings-and-docstrings-in-an-emacs-buffer

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!