ianyepan / vscode-dark-plus-emacs-theme

An accurate port of the default Visual Studio Code Dark+ theme for Emacs
GNU General Public License v3.0
174 stars 17 forks source link

Error on org-mode #37

Open colawithsauce opened 9 months ago

colawithsauce commented 9 months ago
   `(org-todo                         ((,class (,@(when vscode-dark-plus-box-org-todo (list :box '(:line-width 1 :color ,ms-lightred))) ;; <- HERE
                                                :foreground ,ms-lightred :bold nil))))

this snippet doesn't work on emacs-30, master branch. Because ,ms-lightred doesn't expand as expected.

ianyepan commented 5 months ago

Interesting find. I'm using Emacs 29 myself -- probably why I've never run into this issue. Do you know of a workaround for this, or why Emacs 30 doesn't expand variables like previous versions do?

colawithsauce commented 5 months ago

yes, indeed. currently I just added this line into my init file:

(setq vscode-dark-plus-box-org-todo nil)