diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-10-29 21:39:12 +0100 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-10-30 20:28:44 +0100 |
commit | 7c71040ba9e6adcf25cce07d718ef7b996dcfa50 (patch) | |
tree | c3b419e53f2679c642d177ee32c89d83200d5342 /Base/home | |
parent | a4709502d1b9a9b2635343e8b03d89a0b89815e6 (diff) | |
download | serenity-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')
-rw-r--r-- | Base/home/anon/little/main.cpp | 1 |
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; } |