aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/os/tty.c
Commit message (Collapse)AuthorAge
* fix(tui): remove obsolete $NVIM detection #15791erw72021-09-26
| | | | | | | | | | Initially, we planned to set the NVIM environment variable to detect that neovim is running in the neovim built-in terminal. At the time this code was written, there was no way for a parent to set environment variables for a program running in an embedded terminal. Later it was implemented in #12937, but the code to set the NVIM was not added. #11390 now uses ConPTY instead of winpty when possible, so it is no longer necessary to force the use of win32con even when running inside an embedded terminal. Therefore, we now do not need this code.
* win/TUI: enable mouse on ConEmu and vtpcon without vtierw72020-05-26
|
* TUI: use stdio names instead of magic numbers #11410erw72019-11-17
|
* refactor: Extract os_tty_guess_term()Justin M. Keyes2018-12-30
- Also remove feature-detection of uv_set_vterm_state(): instead, on Windows we always require libuv to have that function.