0

There is amazing feature in vim called quickfix (don't remember if it's plugin or the native thing), it allows one to iterate over errors in editor by moving cursor to the location of the error.

How can I setup the same functionality in CLion with Rust plugin?

gasabr
  • 45
  • 3
  • 9

1 Answers1

0

You can do it by pressing F2 key: https://www.jetbrains.com/help/idea/navigating-to-next-previous-error.html

ortem
  • 1
  • 1
  • 1
  • Thank you for response! I've seen this page, `F2` allows one to iterate over errors in *code inspection*, not compiler errors, or there is something wrong with my CLion – gasabr Oct 02 '18 at 18:05