Sha256: 422f57eff6620c42b4a9f2eeea2c7f07ba41eb25956c7ec9b2e6f59e7b5967c3
Contents?: true
Size: 1.2 KB
Versions: 3
Compression:
Stored size: 1.2 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. summary Display counts. query, q "string" Search *.md files for string. version, --version Display the version. EOF exit 1 end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
markdo-0.1.7 | lib/markdo/help_command.rb |
markdo-0.1.6 | lib/markdo/help_command.rb |
markdo-0.1.5 | lib/markdo/help_command.rb |