From 354738fc023861ffb9a14de8916fad01ca7d84e3 Mon Sep 17 00:00:00 2001 From: Juerd Waalboer Date: Thu, 7 Nov 2019 04:07:31 +0100 Subject: [PATCH] New plugin: revspace_ascii --- plugins/revspace_ascii | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 plugins/revspace_ascii diff --git a/plugins/revspace_ascii b/plugins/revspace_ascii new file mode 100644 index 0000000..f427962 --- /dev/null +++ b/plugins/revspace_ascii @@ -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; +}