flycheck / flycheck-rust

Better Rust/Cargo support for Flycheck
GNU General Public License v3.0
121 stars 19 forks source link

Please improve installation notes #63

Closed yuzumx closed 6 years ago

yuzumx commented 6 years ago

Hello:

In you README:

(add-hook 'flycheck-mode-hook #'flycheck-rust-setup)

In some cases it seems unreliable.

My advice:

(with-eval-after-load 'rust-mode
    (add-hook 'flycheck-mode-hook #'flycheck-rust-setup))

Sorry for my poor English.

Thanks.

fmdkdd commented 6 years ago

I think I wrote it that way since users may use use-package or something else. But it may be best to provide more robust copy-and-paste instructions.

Fixed by 089330ac3bb49525ae6a8607a9ea978560ccf721

yuzumx commented 6 years ago

Thank you.