Sha256: 18c55e353d0033b75eef566eb44777f208243b63022066e053212e70fdf70f7f
Contents?: true
Size: 1.16 KB
Versions: 1
Compression:
Stored size: 1.16 KB
Contents
require 'markdo/command' module Markdo class HelpCommand < Command def run @stderr.puts <<-EOF Markdown-based task manager. add "string" Add a task to the inbox. (Set $MARKDO_ROOT and $MARKDO_INBOX.) edit Edit $MARKDO_ROOT in $EDITOR. help, --help Display this help text. ics Make an iCalendar feed of all due dates in Markdo. Can be imported or subscribed to if on a remote server. overview Get overview of overdue, starred, today's, and tomorrow's tasks. overdue Search *.md files for previous dates. (YYYY-MM-DD format.) tag "string" Search *.md files for @string. today Search *.md files for today's date. (YYYY-MM-DD format.) tomorrow Search *.md files for tomorrow's date. (YYYY-MM-DD format.) rss Make an RSS feed of all links in Markdo. Useful as a live bookmark. star, starred Search *.md files for @star. query, q "string" Search *.md files for string. version, --version Display the version. EOF exit 1 end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
markdo-0.1.4 | lib/markdo/help_command.rb |