nobody-famous / alive

Common Lisp Extension for VSCode
The Unlicense
208 stars 19 forks source link

syntax highlighting for `+variable-name+` #173

Closed doongjohn closed 1 year ago

doongjohn commented 1 year ago

image *variable-name* gets special color but +variable-name+ has no color.

nobody-famous commented 1 year ago

Apparently that's from a PR I merged in. There's no semantic token for constants, so they weren't being highlighted at all before. Now it looks like defparameter is using string.regexp coloring and defconstant is using variable.other.constant, so those colors are coming from the color scheme you're using.

doongjohn commented 1 year ago

You're right! 👍