pay-respects/rules/pacman.toml

25 lines
300 B
TOML
Raw Normal View History

2024-11-16 15:22:19 +01:00
command = "pacman"
[[match_err]]
pattern = [
"no operation specified"
]
suggest = [
'''
#[length(1)]
{{command}} -Syu''',
'''
#[min_length(2)]
{{command[0]}} -S {{command[1:]}}''',
2024-11-16 15:22:19 +01:00
]
2025-04-22 15:39:06 +02:00
[[match_err]]
pattern = [
"no targets specified"
]
suggest = [
'''
#[cmd_contains(-S)]
{{command[0]}} -Syu''',
]