Saad,
> how can i change the colour that comments show up as to something else?
> right now they show up as red which is very hard to read in my current
> colour scheme. any help would be appreciated. thanks :)
>
I've got the following in my .emacs startup-file. See variable "font-lock-comment-
face".
;;; enabnle syntax coloring!!!
(cond ((fboundp 'global-font-lock-mode)
;; Turn on font-lock in all modes that support it
(global-font-lock-mode t)
(setq font-lock-support-mode 'lazy-lock-mode)
;; maximum colors
;(setq font-lock-maximum-decoration t)
;; Customize face attributes
(setq font-lock-face-attributes
;; Symbol-for-Face Foreground Background Bold Italic Underline
'((font-lock-comment-face "DarkGreen")
(font-lock-string-face "Black")
(font-lock-keyword-face "RoyalBlue")
(font-lock-function-name-face "Blue")
(font-lock-variable-name-face "Black")
(font-lock-type-face "Black")
(font-lock-reference-face "Purple")))
;; Create the faces from the attributes
; (font-lock-make-faces)
))
Happy Christmas to you,
thomas_|\/|