more faces
Can there be more faces for the graphical elements like watch/locals/etc windows? I think this is one area where graphical IDEs shine - the UI elements have smaller (and non-monospace) fonts so there is more space for the code
Hey! Sounds like a reasonable feature but I am not sure what the best way to implemented it is. Until that is clear to me here is snippet that will achieve what I believe you are looking for:
(add-hook 'dape-info-parent-mode-hook
(defun dape--info-rescale ()
(face-remap-add-relative 'default :height 0.8)))
Certainly I would like to see an "execution line" face to differentiate it from my editing hilight line. eg when dape is debugging I can have the current line bright green or something ;)
Hey @rileyrg late response but for current line dape-source-line-face exist :)
@svaante only these are remaining, how do i change them?
I am sorry for the late reply, but this should do the trick:
(add-hook 'dape-info-parent-mode-hook
(defun dape--info-rescale ()
(face-remap-add-relative 'header-line :height 0.8)
(face-remap-add-relative 'default :height 0.8)))
Added to wiki and closing issue as I don't think I am going to implement this as it's "easily" customizable by user.