Give a configuration option (checkbox) to treat serial port filter string as regex. In utility.ts, use string.match() instead of string.includes() for regex. This will allow things like: USB|ACM for showing both /dev/USB* and /dev/ACM* devices on Linux, while excluding the numerous /dev/ttyS*. Clever users can create even more customized regex.
Give a configuration option (checkbox) to treat serial port filter string as regex. In utility.ts, use string.match() instead of string.includes() for regex. This will allow things like: USB|ACM for showing both /dev/USB* and /dev/ACM* devices on Linux, while excluding the numerous /dev/ttyS*. Clever users can create even more customized regex.