summaryrefslogtreecommitdiffstats
path: root/src/tui/tcell_test.go
AgeCommit message (Collapse)Author
2024-02-010.46.10.46.1Junegunn Choi
2022-08-26Add support for ANSI strike-through (#2932)Emil Vanherp
Close #2932 Co-authored-by: Emil Vanherp <emil@vanherp.me>
2022-03-29Modernize build tagsJunegunn Choi
2021-10-03Fix Backspace key to emit BSpace and AltBS events instead of CtrlHVlastimil Ovčáčík
CtrlH events are still sent when appropriate. I have adjusted FullscreenRenderer to match the LightRenderer's behaviour, which seems to be correct.
2021-10-03Add CtrlCaret keyboard event to FullscreenRendererVlastimil Ovčáčík
2021-10-03Fix Ctrl+Space key combination to emit CtrlSpace instead of Rune ' 'Vlastimil Ovčáčík
2021-10-03Add ability to type AltGr characters in FullscreenRenderer on Windows.Vlastimil Ovčáčík
2021-10-03[tests] Add testing of keyboard events in FullscreenRenderer.GetChar()Vlastimil Ovčáčík
This contains one test case of each tcell.Key* event type that can be sent to and subsequently processed in fzf's GetChar(). The test cases describe status quo, and all of them PASS. Small function util.ToTty() was added. It is similar to util.IsTty(), but for stdout (hence the To preposition).