in reply to <<Modified>> Virtual event in Text

is there a reason for this abnormality, or even a way to conclude what key was pressed and then I can evaluate the text on my own?

Because its drawn that way :)

See https://metacpan.org/source/SREZIC/Tk-804.033/pTk/mTk/generic/tkText.c

See https://metacpan.org/source/SREZIC/Tk-804.033/Text/Text.pm

$mw->bind($class,'<Delete>','Delete'); $mw->bind($class,'<BackSpace>','Backspace');
This corresponds to sub Delete and sub Backspace which just calls delete

Replies are listed 'Best First'.
Re^2: <<Modified>> Virtual event in Text
by Anonymous Monk on Jan 11, 2016 at 10:59 UTC
    I would consider this a bug
Re^2: <<Modified>> Virtual event in Text
by Kafka (Acolyte) on Jan 12, 2016 at 14:29 UTC
    Thanks a lot