Skip to content

Commit

Permalink
readme update
Browse files Browse the repository at this point in the history
  • Loading branch information
ttscoff committed Mar 11, 2020
1 parent 6e1358d commit dc71fe3
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,8 @@ When using the `now` and `later` commands on the command line, you can start the

Notes can be prevented from ever appearing in output with the global option `--no-notes`: `doing --no-notes show all`.

Auto tagging (adding tags listed in .doingrc under `autotag` and `default_tags`) can be skipped for an entry with the `-x` global option: `doing -x done skipping some automatic tagging`.

## Configuration

A basic configuration looks like this:
Expand Down Expand Up @@ -382,6 +384,7 @@ Note that you can include a tag with synonyms in the whitelist as well to tag it
--[no-]notes - Output notes if included in the template (default: enabled)
--stdout - Send results report to STDOUT instead of STDERR
--version - Display the program version
-x, --[no-]noauto - Exclude auto tags and default tags

### Commands:

Expand Down
5 changes: 3 additions & 2 deletions bin/doing
Original file line number Diff line number Diff line change
Expand Up @@ -43,12 +43,13 @@ desc 'Send results report to STDOUT instead of STDERR'
default_value false
switch [:stdout], :default_value => false, :negatable => false

desc 'Exclude auto tags and default tags'
switch [:x,:noauto], :default_value => false

desc 'Use a specific configuration file'
default_value false
flag [:config_file]

desc 'Include auto tags and default tags'
switch [:x,:noauto], :default_value => false

# desc 'Wrap notes at X chars (0 for no wrap)'
# flag [:w,:wrapwidth], :must_match => /^\d+$/, :type => Integer
Expand Down

0 comments on commit dc71fe3

Please sign in to comment.