mirror of
https://github.com/rivo/tview.git
synced 2026-04-26 21:35:54 +03:00
[GH-ISSUE #108] Feature: make the terminal hyperlink support #87
Labels
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/tview#87
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @stephencheng on GitHub (May 2, 2018).
Original GitHub issue: https://github.com/rivo/tview/issues/108
I am referring to: https://gist.github.com/egmontkob/eb114294efbcd5adb1944c9f3cb5feda
When user use below command in terminal:
echo -e '\e]8;;http://example.com\aThis is a link\e]8;;\a'
In my case, I could get the link in iterm2/terminal app.
This link could be use in textview/title/table colum
@rivo commented on GitHub (May 2, 2018):
For this to work in
tview,tcellwould have to support it first.tviewdoes not write escape sequences to the terminal directly but usestcell's screen buffer. You could open an issue there but I'm not sure if it will get added. Seems like a larger addition totcellto me.