New plugin: revspace_ascii

This commit is contained in:
Juerd Waalboer 2019-11-07 04:07:31 +01:00
parent 5840b7bbac
commit 354738fc02

10
plugins/revspace_ascii Normal file
View file

@ -0,0 +1,10 @@
# Hack to work around serial barcode scanner which adds garbage (mostly
# /^[\xFD-\xFF]+/), by stripping everything except printable ASCII, since our
# old IBM terminal doesn't handle non-ascii that well anyway.
# For this plugin to be useful, it needs to be the FIRST in "revbank.plugins".
sub command {
$_[2] =~ s/[^\x20-\x7E]//g; # input is actually a mutable string
return NEXT;
}