1
0
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:
Thomas Mangin
2023-03-11 23:06:35 +00:00
committed by GitHub
parent f02b423f80
commit 8490ea318b
2 changed files with 605 additions and 0 deletions

View File

@ -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 {
}