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>
This commit is contained in:
Paul Delafosse 2022-05-12 16:42:56 +02:00 committed by GitHub
parent 1552b585d6
commit a5c2569654
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
9 changed files with 15 additions and 5 deletions

View file

@ -8,5 +8,6 @@
isolate_with: "^(=).*",
),
bin: (path: "calc"),
icon: Name("x-office-spreadsheet")
icon: Name("x-office-spreadsheet"),
history: false,
)

View file

@ -3,4 +3,5 @@
description: "Query applications by their .desktop entries",
bin: (path: "desktop-entries"),
icon: Name("new-window-symbolic"),
history: true,
)

View file

@ -8,5 +8,5 @@
no_sort: true,
),
bin: (path: "files"),
icon: Name("system-file-manager")
icon: Name("system-file-manager"),
)

View file

@ -7,5 +7,5 @@
isolate: true,
),
bin: (path: "find"),
icon: Name("system-file-manager")
icon: Name("system-file-manager"),
)

View file

@ -8,4 +8,5 @@
),
bin: (path: "terminal"),
icon: Name("utilities-terminal"),
history: true,
)

View file

@ -4,4 +4,5 @@
query: (help: "ddg ", priority: High),
bin: (path: "web"),
icon: Name("system-search"),
history: true,
)