summaryrefslogtreecommitdiff
path: root/Base/home/anon/little
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2019-10-29 21:39:12 +0100
committerAndreas Kling <awesomekling@gmail.com>2019-10-30 20:28:44 +0100
commit7c71040ba9e6adcf25cce07d718ef7b996dcfa50 (patch)
treec3b419e53f2679c642d177ee32c89d83200d5342 /Base/home/anon/little
parenta4709502d1b9a9b2635343e8b03d89a0b89815e6 (diff)
downloadserenity-7c71040ba9e6adcf25cce07d718ef7b996dcfa50.zip
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.
Diffstat (limited to 'Base/home/anon/little')
-rw-r--r--Base/home/anon/little/main.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/Base/home/anon/little/main.cpp b/Base/home/anon/little/main.cpp
index 1faf8bb955..87912293ca 100644
--- a/Base/home/anon/little/main.cpp
+++ b/Base/home/anon/little/main.cpp
@@ -4,5 +4,6 @@ int main(int, char**)
{
// This is a comment :^)
printf("Hello friends!\n");
+ mkdir("/tmp/xyz", 0755);
return 0;
}