todotxt-tui 0.3.0

Todo.txt TUI is a highly customizable terminal-based application for managing your todo tasks. It follows the todo.txt format and offers a wide range of configuration options to suit your needs.
Documentation
layout = { SOI ~ block ~ ","? ~ EOI }
block = { "[" ~ (content ~ ",")* ~ (content ~ ","?)? ~ "]" }
content = _{ direction_key | size_key | block | widget }

direction_key = _{ ^"direction" ~ ":" ~ ( directory_horizontal | directory_vertical ) }
directory_horizontal = { ^"horizontal" }
directory_vertical = { ^"vertical" }

size_key = _{ ^"size" ~ ":" ~ value }

widget = { name ~ (":" ~ value)? }
name = { ^"list" | ^"done" | ^"contexts" | ^"projects" | ^"preview" | ^"live-preview-pending" | ^"live-preview-done" | ^"hashtags" }
value = _{ percentage | size_raw }
size_raw = {ASCII_DIGIT+}
percentage = _{ size_percentage ~ percentage_sign }
size_percentage = { "100" | ASCII_DIGIT{1,2} }
percentage_sign = _{ "%" }

WHITESPACE = _{ " " | "\t" | NEWLINE }