(Emacs 23.4.1)
I'm looking for a solution to where the color of the function name turn to regular text whenever the function parameterlist is equal to, or above 2 arguments.
So functions that takes 0 or 1 argument, have the nice color which I've set in my .emacs file.
Why doesn't functions with >= 2 arguments get that?
Here is my .emacs custom-set-face
:
(custom-set-faces
'(default ((t (:background "#F9F9F7" :family "liberation mono"))))
'(font-lock-builtin-face ((t (:foreground "#5B5B5B"))))
'(font-lock-comment-face ((t (:foreground "#afaf9d"))))
'(font-lock-constant-face ((t (:foreground "#2caeae"))))
'(font-lock-function-name-face ((t (:bold t :foreground "#931616"))))
'(font-lock-keyword-face ((t (:bold t :foreground "#35363a"))))
'(font-lock-negation-char-face ((t (:bold t))))
'(font-lock-reference-face ((t (:foreground "#cbcbcb"))))
'(font-lock-string-face ((t (:foreground "#e80000"))))
'(font-lock-type-face ((t (:bold t :foreground "#3f4d7f"))))
'(font-lock-variable-name-face ((t (:foreground "#35363a"))))
'(font-locl-preprocessor-face ((t (:foreground "#cbcbcb"))))
)