Bug 359504 - Show values of constants when hovering them
Summary: Show values of constants when hovering them
Status: CONFIRMED
Alias: None
Product: kdevelop
Classification: Applications
Component: Language Support: CPP (Clang-based) (show other bugs)
Version: git master
Platform: Compiled Sources Linux
: NOR wishlist
Target Milestone: ---
Assignee: kdevelop-bugs-null
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2016-02-17 15:40 UTC by Alexander Potashev
Modified: 2017-01-11 20:38 UTC (History)
1 user (show)

See Also:
Latest Commit:
Version Fixed In:
Sentry Crash Report:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Alexander Potashev 2016-02-17 15:40:58 UTC
Please display values of constants when hovering them with mouse pointer.

Examples of constants in C++:
  static const size_t size = 16;
  static const std::string blablabla("BlaBlaBla");

When you hover "size" or "blablabla" anywhere in the code where these identifiers reference the above defined constants, a popup widget tells where they are defined but doesn't show their values.

Reproducible: Always
Comment 1 Guillaume Racicot 2017-01-11 19:52:51 UTC
This would be very nice, +1. This feature could be extended to constexpr functions too.