pop-launcher/plugins/src/calc/plugin.ron
Paul Delafosse a5c2569654
feat: add a history attribute to plugin config as described in #110 (#112)
* feat: add a history attribute to plugin config as described in #110

closes #110

* fix: Correct grammar mistake in comment

Co-authored-by: Jacob Kauffmann <jacobgkau@users.noreply.github.com>
2022-05-12 08:42:56 -06:00

13 lines
371 B
Text

(
name: "Calculator with unit conversion (uses Qalculate! expressions)",
description: "Syntax: = <expression>\nExample: = 10 J / (196x^2) = 4 kW/s",
query: (
regex: "^[=\\-0-9].*",
help: "= ",
priority: High,
isolate_with: "^(=).*",
),
bin: (path: "calc"),
icon: Name("x-office-spreadsheet"),
history: false,
)