Nicolas P. Rougier

Results 1792 comments of Nicolas P. Rougier

Not sure actually. It's weird that svg-lib is installed but `package-installed-p 'svg-lib)` reports not install. Is that correct? Can you have a look at the variable `package-activated-list`?

You mean you cannot display svg tags inside the mode line ?

Sorry for long delay. Most probably `left` that is given as argument of nano-modeline--make is nil such that when it is evaluated, emacs complains it misses one argument (I think)....

When you start nano-modeline manually, it is your first command? Can you before `toggle-debug-on-error`?

Can you evaluate (using `M-:`): `(face-remap-set-base 'header-line 'nano-modeline--empty-face)` and `(face-remap-set-base 'header-line '(nano-modeline--empty-face))`

What about `(facep 'nano-modeline--empty-face)`?

Weird. Can you try `(face-remap-set-base 'header-line 'default)`?

What is the documentation of `face-remap-set-base` for you ? Mine is: ``` Signature (face-remap-set-base FACE &rest SPECS) Documentation Set the base remapping of FACE in the current buffer to SPECS....

What about `(face-remap-add-relative 'escape-glyph 'highlight 'italic)` (from the [manual](https://www.gnu.org/software/emacs/manual/html_node/elisp/Face-Remapping.html))

Sorry for delay. Another try: ```emacs-lisp (face-remap-set-base 'header-line 'default) (face-remap-set-base 'header-line '(default)) (face-remap-set-base 'header-line '(:inherit default)) ```