1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 14:17:36 +00:00

HackStudio: Show documentation preview in tooltip on identifier hover

When hovering over a C++ token that we have a man page for, we now show
the man page in a tooltip window.

This feels rather bulky at the moment, but the basic mechanism is quite
neat and just needs a bunch of tuning.
This commit is contained in:
Andreas Kling 2019-10-29 21:39:12 +01:00
parent a4709502d1
commit 7c71040ba9
4 changed files with 128 additions and 7 deletions

View file

@ -4,5 +4,6 @@ int main(int, char**)
{
// This is a comment :^)
printf("Hello friends!\n");
mkdir("/tmp/xyz", 0755);
return 0;
}