Sha256: c20cda40ae4e4775ba240fa5c13e803df4415ba4410eee3e4383f472b069577a

Contents?: true

Size: 1.03 KB

Versions: 7

Compression:

Stored size: 1.03 KB

Contents

module Memo
  class Cli
    module Usage
      class Help
        def to_s
          <<~TEXT
            EASY EDIT MEMO

            USAGE
             - Config
              You can edit basic config and register aliases

              $ memo c
              $ memo config

             - Edit
              $ memo e
              $ memo edit
              $ memo edit todo
              $ memo edit todo -n project1
              $ memo edit todo -n p # use namespace_alias

             - Preview
              $ memo p
              $ memo preview
              $ memo p todo
              $ memo p todo -n project1
              $ memo p todo -n p # use namespace_alias

            - Today
              # edit
              $ memo t
              $ memo today

              # preview
              $ memo preview today
              $ memo p t

            - Fuzzy
              $ memo fuzzy
              $ memo f

            - Custom Command
              $ memo todo # use command_alias
          TEXT
        end
      end
    end
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
ememo-0.1.8 lib/memo/cli/usage/help.rb
ememo-0.1.7 lib/memo/cli/usage/help.rb
ememo-0.1.6 lib/memo/cli/usage/help.rb
ememo-0.1.5 lib/memo/cli/usage/help.rb
ememo-0.1.4 lib/memo/cli/usage/help.rb
ememo-0.1.3 lib/memo/cli/usage/help.rb
ememo-0.1.2 lib/memo/cli/usage/help.rb