In Emacs24 python mode, how to customize each synt

2019-06-11 05:32发布

For example, I want "while" to be blue, "for" to be green, how to do that? Beyond colors, can I make syntax bold or italic? Thank you so much in advance.

2条回答
来,给爷笑一个
2楼-- · 2019-06-11 06:19

The easiest way is to put the cursor into a string of the given colour and type M-xset-face-foregroundEnter. Then just confirm the face name and specify the colour. To set the face to bold or italic, use set-face-font in a similar way.

You can save the settings into your .emacs file:

(set-face-foreground 'font-lock-comment-face "gray")
查看更多
Melony?
3楼-- · 2019-06-11 06:30

Because ALL of the following keywords are defined within python.el as python-font-lock-keywords, you would need to trump some of them with a different font face or hack the source for these same keywords to have different font faces:

"and" "del" "from" "not" "while" "as" "elif" "global" "or" "with" "assert" "else" "if" "pass" "yield" "break" "except" "import" "class" "in" "raise" "continue" "finally" "is" "return" "def" "for" "lambda" "try" "print" "exec" "nonlocal" "self".

The following code is an example of how to trump python-font-lock-keywords for some of the keywords that have already been defined within python.el -- in this example, while is blue with bold; and, for is green with bold and italics.   python-font-lock-keywords that are not trumped by specially defined font faces will default to font-lock-keyword-face -- I have included a sample modification of that face as well:

(custom-set-faces
  '(font-lock-keyword-face
     ((t (:background "white" :foreground "red" :bold t))))
  )

(defvar lawlist-blue (make-face 'lawlist-blue))
(set-face-attribute 'lawlist-blue nil
  :background "white" :foreground "blue" :bold t)

(defvar lawlist-green (make-face 'lawlist-green))
(set-face-attribute 'lawlist-green nil
  :background "white" :foreground "green" :bold t :italic t)

(defvar lawlist-keywords-01
  (concat "\\b\\(?:"
    (regexp-opt (list "hello" "world" "while" ))
  "\\)\\b"))

(defvar lawlist-keywords-02
  (concat "\\b\\(?:"
    (regexp-opt (list "foo" "bar" "for" ))
  "\\)\\b"))

(font-lock-add-keywords 'python-mode (list

  (list (concat
    "\\("lawlist-keywords-01"\\)") 1 'lawlist-blue t)

  (list (concat
    "\\("lawlist-keywords-02"\\)") 1 'lawlist-green t)

   ))
查看更多
登录 后发表回答