Iris Garcia

Results 10 comments of Iris Garcia

> Please try `(advice-add #'select-window :after #'force-mode-line-update)` and/or `(add-function :after after-focus-change-function #'force-mode-line-update)`. Something not working as it should with: `(advice-add #'select-window :after #'force-mode-line-update)` ``` apply: Wrong number of arguments: #,...

> No idea what happen to your WM. Try this snippet > > ```emacs-lisp > (advice-add #'select-window :after (lambda (&rest _) (force-mode-line-update))) > (advice-add #'handle-switch-frame :after #'doom-modeline-set-selected-window) > (add-function :after...

> I think it's related to Emacs 29 and/or WM. I tested on macOS 12.5, Windows 10/11, Ubuntu KDE/Mate, Linux Mint Cinnamon, etc. It's working well. It seems face remapping...

Ok, I confirm `Vanilla Emacs + doom-modeline` works as expected, I'll try to find out what is causing the issues in `doom`. Thank you @seagle0128

@jo-so do you have a patch using your fix? I would like to use it!

I'll try to debug this, but my elisp knowledge is very limited, lets see how far I get.

After a day debugging this, I found out I didn't have the latest version of the Bash Language Server, updating to the latest version seems to fix this issue, I...

No worries, I really want to get into elisp, I just find it hard to learn (coming from OOP). But I'll install again the old Bash Language Server and try...

Hi @shiqinfeng1, yes the way I solved it was using the following docker image in the jenkins agent: ``` docker { image 'techknowlogick/xgo:latest' args '-u root:root --entrypoint=\'\'' } ``` Then...