mirror of
https://github.com/tio/tio.git
synced 2026-05-01 23:07:58 +02:00
Additional commands: EOL delay, lower to upper translation, added mark parity
Added command line options: -O, --eol-delay to have a separate delay for end of line -U, --upper to enable translation of lower case alpha to upper case Added ability to set mark parity. Added ctrl-t U key sequence to allow enable/disable lower case alpha to upper case during a session. Updated Man page with command line options, ctrl-t sequences and configuration file options. Updated README.md, with above information.
This commit is contained in:
parent
dbdb84743f
commit
944ee9173b
7 changed files with 98 additions and 6 deletions
|
|
@ -124,6 +124,14 @@ static int data_handler(void *user, const char *section, const char *name,
|
|||
{
|
||||
option.output_delay = atoi(value);
|
||||
}
|
||||
else if (!strcmp(name, "eol-delay"))
|
||||
{
|
||||
option.eol_delay = atoi(value);
|
||||
}
|
||||
else if ( !strcmp(name, "upcase"))
|
||||
{
|
||||
option.upcase = true;
|
||||
}
|
||||
else if (!strcmp(name, "dtr-pulse-duration"))
|
||||
{
|
||||
option.dtr_pulse_duration = atoi(value);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue