fix(calc): Require inclusive search to start with a number

This commit is contained in:
Michael Aaron Murphy 2022-03-28 01:19:09 +02:00 committed by Michael Murphy
parent 73afa4ce65
commit e62aa1f1b8

View file

@ -2,7 +2,7 @@
name: "Calculator with unit conversion (uses Qalculate! expressions)",
description: "Syntax: = <expression>\nExample: = 10 J / (196x^2) = 4 kW/s",
query: (
regex: ".*[0-9].*",
regex: "^[=\-0-9].*",
help: "= ",
priority: High,
isolate_with: "^(=).*",