You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
after launching a client frame indentation guides are shown in black instead of grey:
If f90-mode-hook is replaced with prog-mode-hook, indentation guides get the right colour:
How to reproduce
With the init.el above, run emacs --daemon && emacsclient -c file.f90.
This issue only happens in emacsclient sessions. Launching Emacs with emacs file.f90 I get the right colour even with f90-mode-hook in my init file.
I'm on Emacs 26.2, highlight-indent-guides v. 20190108.3.
The text was updated successfully, but these errors were encountered:
The behaviour I'm getting is quite weird: I tried to work around the issue by enabling highlight-indent-guides-mode from the prog-mode-hook and disabling it with (highlight-indent-guides-mode -1) in the hook of modes where I don't want it. It works for LaTeX, shell, Markdown and other mode hooks, but calling (highlight-indent-guides-mode -1) from emacs-lisp-mode-hook got me back the black guides again.
The thing that works best seems to be just adding (highlight-indent-guides-mode) to init.el. 🤔
Hm ... I'm having trouble reproducing this on my macos, I don't think the package I'm using supports the -c option for emacsclient. I'll have to take a closer look later on my linux system. Thanks for letting me know!
With the following
init.el
,after launching a client frame indentation guides are shown in black instead of grey:
![Screenshot from 2019-12-10 17-30-04](https://user-images.githubusercontent.com/22297948/70548760-681ad780-1b73-11ea-816d-d2fc0b4ba9fd.png)
![Screenshot from 2019-12-10 17-30-18](https://user-images.githubusercontent.com/22297948/70549108-f68f5900-1b73-11ea-8bbe-9099ce657532.png)
If
f90-mode-hook
is replaced withprog-mode-hook
, indentation guides get the right colour:How to reproduce
With the
init.el
above, runemacs --daemon && emacsclient -c file.f90
.This issue only happens in
emacsclient
sessions. Launching Emacs withemacs file.f90
I get the right colour even withf90-mode-hook
in my init file.I'm on Emacs 26.2, highlight-indent-guides v. 20190108.3.
The text was updated successfully, but these errors were encountered: