summaryrefslogtreecommitdiffstats
path: root/winsup/cygwin/fhandler_console.cc
Commit message (Expand)AuthorAgeFilesLines
* Replace bogus resize-window-to-clear-screen logic.Kaz Kylheku2021-07-261-55/+22
* Revert "Fix console clear screen if buffer is full"Kaz Kylheku2021-07-261-23/+14
* Console: integrate end-of-line hack with cursor positioning.Kaz Kylheku2021-07-261-8/+23
* Fix previous VT100 fix.Kaz Kylheku2021-07-261-11/+11
* Console: provide VT100-like end-of-line print behavior.Kaz Kylheku2021-07-261-0/+23
* Cygwin: console, pty: Stop ignoring Ctrl-C by IGNBRK.Takashi Yano via Cygwin-patches2021-03-081-1/+1
* Cygwin: console: Prevent NULL pointer access in close().Takashi Yano via Cygwin-patches2021-02-221-1/+1
* Cygwin: console: Add support for FLUSHO and Ctrl-O.Takashi Yano via Cygwin-patches2021-02-191-0/+11
* Cygwin: console: Fix handling of Ctrl-S in Win7.Takashi Yano via Cygwin-patches2021-02-191-223/+68
* Cygwin: console: Fix SIGWINCH handling in Win7.Takashi Yano via Cygwin-patches2021-02-191-0/+15
* Cygwin: console: Introduce new thread which handles input signal.Takashi Yano via Cygwin-patches2021-02-171-1/+176
* Cygwin: console: Abort read() on signal if SA_RESTART is not set.Takashi Yano via Cygwin-patches2021-02-151-4/+3
* Cygwin: console: Align the behaviour against signal with pty.Takashi Yano via Cygwin-patches2021-02-011-1/+2
* Cygwin: console: Make read() thread-safe.Takashi Yano via Cygwin-patches2021-02-011-5/+6
* Cygwin: console: Add missing guard regarding attach_mutex.Takashi Yano via Cygwin-patches2021-01-251-0/+27
* Cygwin: console: Fix "Bad file descriptor" error in script command.Takashi Yano via Cygwin-patches2021-01-201-5/+5
* Cygwin: pty: Prevent pty from changing code page of parent console.Takashi Yano via Cygwin-patches2021-01-181-6/+32
* Cygwin: console: Revise the code to switch xterm mode.Takashi Yano via Cygwin-patches2021-01-181-42/+79
* Cygwin: avoid GCC 10 error with -Werror=narrowingJon Turney2020-09-281-2/+2
* Cygwin: console: Replace WriteConsoleA() with WriteConsoleW().Takashi Yano via Cygwin-patches2020-08-271-42/+47
* Cygwin: pty: Implement new pseudo console support.Takashi Yano2020-08-221-43/+0
* Cygwin: convert sys_wcstombs/sys_mbstowcs wrapper to inline functionsCorinna Vinschen2020-07-101-1/+1
* Cygwin: console: Discard some unsupported escape sequences.Takashi Yano via Cygwin-patches2020-05-311-16/+38
* Cygwin: console: Make cursor keys work in vim under ConEmu.Takashi Yano via Cygwin-patches2020-05-301-6/+14
* Cygwin: console: Fix behaviour of "ESC 8" after reset.Takashi Yano2020-03-091-0/+7
* Do not bother passing optional argument to WriteConsoleA.Hans-Bernhard Broeker2020-03-091-28/+23
* Collect handling of wpixput and wpbuf into a helper class.Hans-Bernhard Broeker2020-03-091-65/+76
* Cygwin: console: convert wpbuf_put to inline functionCorinna Vinschen2020-03-021-4/+7
* Cygwin: console: Add a workaround for "ESC 7" and "ESC 8".Takashi Yano2020-03-021-13/+40
* Cygwin: console: Prevent buffer overrun.Takashi Yano2020-03-021-10/+8
* Cygwin: console: Fix setting/unsetting xterm mode for input.Takashi Yano2020-03-021-2/+3
* Cygwin: console: Revise the code to fix tab position.Takashi Yano2020-03-021-12/+3
* Cygwin: console: Adjust the detailed behaviour of ESC sequences.Takashi Yano2020-02-281-7/+44
* Cygwin: console: Add emulation of CSI3J on Win10 1809.Takashi Yano2020-02-261-2/+17
* Cygwin: console: Add support for REP escape sequence to xterm mode.Takashi Yano2020-02-261-0/+33
* Cygwin: console: Unify workaround code for CSI3J and CSI?1049h/l.Takashi Yano2020-02-261-21/+22
* Cygwin: console: Add workaround for broken IL/DL in xterm mode.Takashi Yano2020-02-261-2/+154
* Cygwin: console: Fix segfault on shared_console_info access.Takashi Yano2020-02-241-12/+11
* Cygwin: don't move cursor on NUL char at allCorinna Vinschen2020-02-211-2/+3
* Cygwin: fhandler_console.cc: fix minor style issuesCorinna Vinschen2020-02-201-3/+3
* Cygwin: console: ignore NUL byte on write in xterm emulation mode as wellCorinna Vinschen2020-02-201-1/+3
* Cygwin: console: Add guard for set/unset xterm compatible mode.cygwin-3_1_4-releaseTakashi Yano2020-02-181-37/+88
* Cygwin: console: Fix ioctl() FIONREAD.Takashi Yano2020-02-181-4/+33
* Cygwin: console: Fix code for restoring console mode.Takashi Yano2020-02-171-1/+1
* Cygwin: console: Change timing of set/unset xterm compatible mode.cygwin-3_1_3-releaseTakashi Yano2020-02-171-50/+51
* Cygwin: console: Revise color setting codes in legacy console mode.Takashi Yano2020-02-041-20/+27
* Cygwin: console: Share readahead buffer within the same process.Takashi Yano2020-01-281-1/+38
* Cygwin: console: Add code to restore console mode on close.Takashi Yano2020-01-141-0/+21
* Cygwin: console: Add workaround for broken CSI3J in Win10 1809.Takashi Yano2020-01-141-0/+12
* Cygwin: console: Disable xterm mode for non cygwin process only.Takashi Yano2020-01-141-19/+0