Skip to content

Commit dc71fe3

Browse files
committed
readme update
1 parent 6e1358d commit dc71fe3

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,8 @@ When using the `now` and `later` commands on the command line, you can start the
5454

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

57+
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`.
58+
5759
## Configuration
5860

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

386389
### Commands:
387390

bin/doing

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,12 +43,13 @@ desc 'Send results report to STDOUT instead of STDERR'
4343
default_value false
4444
switch [:stdout], :default_value => false, :negatable => false
4545

46+
desc 'Exclude auto tags and default tags'
47+
switch [:x,:noauto], :default_value => false
48+
4649
desc 'Use a specific configuration file'
4750
default_value false
4851
flag [:config_file]
4952

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

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

0 commit comments

Comments
 (0)