* 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>
13 lines
371 B
Text
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,
|
|
)
|