It’s a feature that I miss from Clion, my current workflow is by using a 3rd party linter after my coding session outside of Emacs. I know that I can use the linter with an after-save-hook, but is there any other solutions with flycheck or lsp integrations? (I tried flycheck-clang-tidy but I didn’t get any warrings or indicators, not sure if clang-tidy can detect them though)

2 points

clangd and probably other linters can warn about this. False positives are possible, though: an include may very well be unused in a given build configuration, but enabled in another.

permalink
report
reply
1 point

Never heard of such thing. I don’t think that could be done correctly either. How do you detect is an include is used? Looking if it defines something? what about a conditional that can exclude the whole file unless a define is set?

permalink
report
reply
1 point

usually the compiler can help here, as it knows what was needed in the code and where the definition came from, including macros. Not sure there is an open-source tol for that though, if clang-tidy does not do it.

as it was said elsewhere, when there are several configurations at play, one needs to be careful.

permalink
report
parent
reply
1 point

Eglot does this out of the box with clangd. Also no need for extra packages for clang-tidy, it’s integrated with within clangd so you get both linter warnings and build errors in the flymake window.

You may have to enable more checks as it is quiet enough by default. You may also have to enable clangd-tidy integration in clangd command line as I’m not sure it is out of the box. Something like this should work:

(with-eval-after-load 'eglot
        (add-to-list 'eglot-server-programs
            '((c-mode c++-mode c-ts-mode c++-ts-mode c-or-c++-ts-mode)
              . ("clangd"
                 "--clang-tidy"))))
permalink
report
reply
0 points

RemindMe! 24 hours

permalink
report
reply

Emacs

!emacs@communick.news

Create post

A community for the timeless and infinitely powerful editor. Want to see what Emacs is capable of?!

Get Emacs

  • Windows
  • Mac OS X
  • GNU/Linux and BSD (Just get it from your distribution’s package manager)

Rules

  1. Posts should be emacs related
  2. Be kind please
  3. Yes, we already know: Google results for “emacs” and “vi” link to each other. We good.

Emacs Resources

Emacs Tutorials

Useful Emacs configuration files and distributions

Quick pain-saver tip

Community stats

  • 18

    Monthly active users

  • 562

    Posts

  • 2.4K

    Comments