New plugin: revspace_ascii
This commit is contained in:
parent
5840b7bbac
commit
354738fc02
1 changed files with 10 additions and 0 deletions
10
plugins/revspace_ascii
Normal file
10
plugins/revspace_ascii
Normal 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;
|
||||
}
|
Loading…
Add table
Reference in a new issue