v1cont / yad

Yet Another Dialog
GNU General Public License v3.0
657 stars 58 forks source link

[feature request] add to --form :FTXT with pango #171

Open cou645 opened 2 years ago

cou645 commented 2 years ago

When implementing a text field :TXT in yad --form --cycle-read, in order to format a large body of text into the field it is necessary to pre-process the text with something like this "T_TEXT="$MULTI_LINE_STRING"; A_TEXT=$(while read -r line; do printf "%s" "$line\n"; done <<< "$T_TEXT"); printf "%s\n%s\n%s\n" "$COMMAND" "$CBE_LIST" "$A_TEXT" > /tmp/pipe" I request that this be standard for :TXT type fields, or add an :FTXT type field with it. Could it also allow pango and links? Is it asking too much?