lem-project / lem

Common Lisp editor/IDE with high expansibility
http://lem-project.github.io/
MIT License
2.32k stars 167 forks source link

Color / grammar inconsistencies #1482

Open rpx99 opened 1 month ago

rpx99 commented 1 month ago

Noticed some color inconsistencies, e.g.

image

Why are some (like find-package) displayed in white color and why is the # in defpackage not white and :start blue ?

:COLOR-THEME "harmonic-dark"

g-gundam commented 2 weeks ago

@rpx99 That might be on purpose. defpackage, in-package, and defun are not functions like find-package, delete-package and find-symbol. I'm not sure what the right terminology is, but maybe someone who knows Common Lisp better can chime in. I think defun is considered a special form, but I'm not sure.

Regarding the coloring for #:start, I think you may have a valid point. Hopefully, someone who knows more can clarify the situation.