1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 19:37:35 +00:00

LibVT+Terminal: Support hyperlinks in the terminal :^)

We now support basic hyperlinking in the terminal with <OSC>;8;;URL<ST>
Links are opened via LaunchServer on Ctrl+LeftMouse.
This commit is contained in:
Andreas Kling 2020-05-09 16:16:16 +02:00
parent 427863f275
commit f596b12a04
7 changed files with 62 additions and 6 deletions

View file

@ -129,6 +129,9 @@ private:
VT::Position m_selection_start;
VT::Position m_selection_end;
String m_hovered_href;
String m_hovered_href_id;
bool m_should_beep { false };
bool m_belling { false };
bool m_alt_key_held { false };