bugfix: esc

This commit is contained in:
2025-06-16 13:47:04 +02:00
parent 83beaa3ad5
commit caec86c5a0
7 changed files with 9 additions and 27 deletions

View File

@@ -10,7 +10,6 @@
# Functions
# allday
# Return line for all-day event.
#
# @input collection: Collection symbol
@@ -20,7 +19,6 @@ function allday(collection, desc) {
return collection " " ITALIC FAINT " (allday) " OFF desc
}
# endstoday
# Return line for multi-day event, or event that starts at midnight, which ends today.
#
# @input stop: Time at which the event ends
@@ -31,7 +29,6 @@ function endstoday(stop, collection, desc) {
return collection " " CYAN " -- " stop OFF ": " desc
}
# slice
# Return line for event that starts sometime today.
#
# @input start: Time at which the event starts
@@ -46,7 +43,6 @@ function slice(start, stop, collection, desc) {
return collection " " CYAN start OFF " -- " CYAN stop OFF ": " desc
}
# hrline
# Print line for a single hour entry.
#
# @input hour: Hour of the entry
@@ -55,7 +51,6 @@ function hrline(hour) {
print today, hour, "", "", "", " " FAINT hour ":00 ----------------------" OFF
}
# hrlines
# Print lines for hour entries before an event that starts at `start` and stops
# at `stop`.
#