-
Notifications
You must be signed in to change notification settings - Fork 15
Description
This plugin works very well on linux, but does not work on windows, since the pty
module does not work on windows according to python's official documentation(in fact, it does not work on windows at all since there's no termios
module):
vim-ultest/rplugin/python3/ultest/handler/runner/handle.py
Lines 1 to 5 in dfea06d
import errno | |
import os | |
import pty | |
import select | |
from contextlib import contextmanager |
The pty module defines operations for handling the pseudo-terminal concept: starting another process and being able to write to and read from its controlling terminal programmatically.
Because pseudo-terminal handling is highly platform dependent, there is code to do it only for Linux. (The Linux code is supposed to work on other platforms, but hasn’t been tested yet.)
Any plan to support windows?