mirror of
https://github.com/rivo/tview.git
synced 2026-04-27 22:05:53 +03:00
[GH-ISSUE #775] broken links in InputField wiki #565
Labels
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/tview#565
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 @carpii on GitHub (Dec 3, 2022).
Original GitHub issue: https://github.com/rivo/tview/issues/775
I couldn't find a way to fork the wiki repo, so I'll report them here instead
https://github.com/rivo/tview/wiki/InputField
The two autocomplete links are broken
They have since moved from
demos/inputfield/autocomplete.go->demos/inputfield/autocomplete/main.go), and likewise for async@rivo commented on GitHub (Dec 3, 2022):
Thanks for letting me know. I fixed the broken links.
I don't know if a PR can be submitted for a Wiki.
@rivo commented on GitHub (Dec 3, 2022):
By the way, @carpii, thank you for sponsoring me! 😊
@carpii commented on GitHub (Dec 3, 2022):
No probs, great lib thanks :-)
@carpii commented on GitHub (Dec 3, 2022):
@rivo - Just as a sidenote, do you know why VSCode terminal will only show 16 colors when debugging a tview app?
Top area is my tview app running in bash terminal. Bottom area is when debugging via VSCode.
I've pretty much exhausted my google-fu, and VSCode discord has no suggestions either
Thanks
@rivo commented on GitHub (Dec 4, 2022):
I didn't know you could run
tview(ortcellfor that matter) in VSCode. I always getwhen I try to do that. But anything related to terminal support is a matter of
tcell. You might want to ask for help there. I don't know much about that topic.@carpii commented on GitHub (Dec 4, 2022):
Thanks, didn't think to try tcell support, but makes sense since they provide the coloring features
For debugging in vscode, I thinkit's just a case of adding
"console": "integratedTerminal",to your.vscode/launch.json(and then select the launch profile from the Run and Debug tab)Trimmed down version of mine below...
Then I can debug my tview app directly in vscode terminal (although color palette seems restricted). Still, it's pretty handy :)
@carpii commented on GitHub (Dec 6, 2022):
Found the solution, you have to set this in vscode settings..
"terminal.integrated.minimumContrastRatio": 1@rivo commented on GitHub (Dec 8, 2022):
Wow! Nice! This is so useful! I had never figured that out myself. Thank you for this!