summaryrefslogtreecommitdiff
path: root/src/tui/light_windows.go
AgeCommit message (Collapse)Author
2025-04-20Add --tty-default=/dev/tty and --no-tty-default option (#4352)Junegunn Choi
Fix #4242. Use --no-tty-default, if you want fzf to perform a TTY look-up instead of defaulting to /dev/tty.
2025-03-03[windows] Prevent fzf from consuming user input while pausedJunegunn Choi
This partly fixes #4260. fzf still can consume the first key stroke.
2024-12-31Add --list-border for additional border around the list sectionJunegunn Choi
Close #4148
2024-06-12Fix invalid mouse offset for --height on WindowsJunegunn Choi
2024-06-01Fix --height on WindowsJunegunn Choi
2024-05-14Render UI directly to /dev/ttyJunegunn Choi
See https://github.com/junegunn/fzf/discussions/3792 This allows us to separately capture the standard error from fzf and its child processes, and there's less chance of user errors of redirecting the error stream and hiding fzf.
2024-05-07Refactor the code so that fzf can be used as a library (#3769)Junegunn Choi
2023-11-10Revert "Sixel and Kitty image support on Windows binary (#2544)"Junegunn Choi
This reverts commit 68db9cb499ab32190edae6c285942c5fb7cf39ed.
2022-03-29Modernize build tagsJunegunn Choi
2021-08-15Restore VT hack for Windows (#2580)Michael Kelley
- restore VT enable hack - resolve an issue reported in https://github.com/kelleyma49/PSFzf
2021-04-04Ensure proper ESC seq handling under Windows preview mode (#2430)Michael Kelley
- Increase go routine buffer size - Add time wait for nonblock getchr() - Resolve #2429
2020-09-02Add truecolor support for Windows, if available (#2156)Michael Kelley
- Update to latest tcell which has 24 bit Windows support - light renderer under Windows defaults to Dark256, if possible - Respect TCELL_TRUECOLOR - Remove tcell 1.3 references
2020-03-10Make height option work under Windows (#1341)Michael Kelley
Separate Unix & Windows code into platform specific files for light renderer