Hello,
Trying to find out the list of available terminal commands.
So far I found only 2:
:set x ([:terminal inkey]); #read one character from stdin
:put ([:terminal style varname|syntax-meta|none] . $line); #apply different styling (color) to terminal output
I’m trying to echo the key caught by [:terminal inkey] as it is not displayed on the terminal.
I’m looking for something like :terminal echo or outkey (I tried many more…) but none work so far.
:set x ([:terminal inkey]); #does not echo the key
#process input (look for enter, backspace)
:terminal echo x; # that does not work…
Maybe another way ?
:put always starts a new line.
Thanks,
Gerald.