-
-
Notifications
You must be signed in to change notification settings - Fork 204
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add faces for dired+ #193
base: master
Are you sure you want to change the base?
Add faces for dired+ #193
Conversation
Great work, thx. Missed that faces long time now |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There are definitely good additions here. Sorry it has taken so long, but if you update the PR, I promise to handle it quickly.
@@ -582,6 +584,7 @@ the \"Gen RGB\" column in solarized-definitions.el to improve them further." | |||
(helm-bookmark-man (,@fg-violet)) | |||
(helm-bookmark-w3m (,@fg-yellow)) | |||
(helm-bookmarks-su (,@fg-orange)) | |||
(helm-buffer-directory (:inherit helm-ff-directory)) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I’d be happy to take the changes from here down, if you want to update the PR.
@@ -165,7 +165,7 @@ the \"Gen RGB\" column in solarized-definitions.el to improve them further." | |||
(italic (if solarized-italic 'italic 'unspecified))) | |||
(cond ((eq 'high solarized-contrast) | |||
(let ((orig-base3 base3)) | |||
(rotatef base01 base00 base0 base1 base2 base3) | |||
(cl-rotatef base01 base00 base0 base1 base2 base3) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Current version no longer uses rotatef
.
@@ -252,7 +252,7 @@ the \"Gen RGB\" column in solarized-definitions.el to improve them further." | |||
(,@fg-base1 ,@bg-base02 ,@fmt-revbb :box nil)) | |||
(mode-line-inactive ; StatusLineNC | |||
(,@fg-base00 ,@bg-base02 ,@fmt-revbb :box nil)) | |||
(region (,@fg-base01 ,@bg-base03 ,@fmt-revbb)) ; Visual | |||
(region (:background base02 :foreground nil :inverse-video nil)) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This comes directly from the Vim theme, so I’m not likely to change it. But soon I’ll merge something like #191 which would make it easy to define variations like this locally (while still being able to refer to base02
, etc.).
I added faces for dired+.
Could you merge this patch?