bertulli

Results 17 comments of bertulli

EDIT: The reported behaviour happens having in my init file ``` emacs-lisp (require 'rust-mode) (require 'rustic) (require 'lsp) (require 'flycheck) (with-eval-after-load 'lsp (with-eval-after-load 'rustic (setq lsp-rust-analyzer-server-display-inlay-hints t) (add-hook 'rustic-mode-hook #'lsp-rust-analyzer-inlay-hints-mode)...

Another thing: completely removing the snippet in the previous comment from my init file, I can't find nor the lsp-rust-analyzer variables, nor the function. It seems as the mode is...

Hi, thanks for your help. Turned out that part of the problem is that `lsp-rust.el` needed to be manually required (via a `require`). Note that now I'm on `GNU Emacs...

I forgot a possibly important thing: if, in my init file, I comment out the section on `dap-mode`, I still get the errors, but the inlays are successfully started!

Ok, I think I (almost) got it. Following a suggestion from @nitincodery , I see [this intervetion from yyoncho](https://gitter.im/emacs-lsp/lsp-mode?at=5e8231df8b14736a7735dc27), where they suggested to use ```emacs-lisp (add-hook 'lsp-after-open-hook (lambda () (when...

`GNU Emacs 28.1 (build 1, x86_64-pc-linux-gnu, GTK+ Version 3.24.33, cairo version 1.17.6) of 2022-04-28`, on `Linux 5.18.12-arch1-1 #1 SMP PREEMPT_DYNAMIC Fri, 15 Jul 2022 15:33:02 +0000 x86_64 GNU/Linux`

Thanks, done! Tell me if it's ok for you. 👍

I have the same problem. **Note I am using flycheck with lsp-mode + rustic**. I can attach some screenshot for clarification: Normal file: ![Screenshot from 2022-08-01 12-28-15](https://user-images.githubusercontent.com/10565357/182132121-26b55803-eeb2-4a65-8ce1-22fac07b6041.png) After having modified...

It still requires an edit before showing also for me.

> Hmmm... What's the value of `flycheck-check-syntax-automatically`? It is `'(save idle-change new-line mode-enabled)`. However, apparently it seems that this is actually expected behaviour, especially [on `rust-analyzer`'s side](https://users.rust-lang.org/t/rust-analyzer-doesnt-check-the-buffer-on-typing-but-only-on-save-how-to-change-that/79221/12). So it's not...