mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
readline: add more readline support to macos too (not simply os.get_raw_line based, but arrow key navigation, history etc too) (#17602)
This commit is contained in:
@ -10,6 +10,12 @@ module readline
|
||||
|
||||
import os
|
||||
|
||||
// termios definitions
|
||||
// https://github.com/openbsd/src/blob/master/sys/sys/termios.h
|
||||
// https://github.com/vocho/openqnx/blob/master/trunk/lib/c/public/termios.h
|
||||
// https://github.com/omniti-labs/illumos-omnios/blob/master/usr/src/uts/common/sys/termios.h
|
||||
// https://github.com/torvalds/linux/blob/master/include/uapi/asm-generic/termbits.h
|
||||
|
||||
struct Termios {
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user