* 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>
12 lines
318 B
Text
12 lines
318 B
Text
(
|
|
name: "Terminal or background commands",
|
|
description: "Syntax: { run | t: | : } <command>\nExample: run sudo apt update",
|
|
query: (
|
|
regex: "^(:|t:|run ).*",
|
|
help: "run ",
|
|
isolate: true,
|
|
),
|
|
bin: (path: "terminal"),
|
|
icon: Name("utilities-terminal"),
|
|
history: true,
|
|
)
|