post/alias,command,task

This commit is contained in:
Marc Beninca 2025-08-03 16:05:25 +02:00
parent 10e5327a56
commit 8f5aaa6f44
Signed by: marc.beninca
GPG key ID: 9C7613450C80C24F

View file

@ -238,7 +238,19 @@ function parse_next(string) {
doc_reset() doc_reset()
variable = "" variable = ""
# function # alias
} else if (current_match == "alias") {
alias = ""
# command
} else if (current_match == "command") {
command = ""
# task
} else if (current_match == "task") {
task = ""
# close
} else if (current_match == "close") { } else if (current_match == "close") {
doc_reset() doc_reset()
current_function = "" current_function = ""