doing 2.0.7.pre → 2.0.11

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (88) hide show
  1. checksums.yaml +4 -4
  2. data/.yardoc/checksums +20 -0
  3. data/.yardoc/complete +0 -0
  4. data/.yardoc/object_types +0 -0
  5. data/.yardoc/objects/root.dat +0 -0
  6. data/.yardoc/proxy_types +0 -0
  7. data/.yardopts +1 -0
  8. data/CHANGELOG.md +13 -9
  9. data/Gemfile.lock +30 -10
  10. data/README.md +1 -1
  11. data/Rakefile +8 -1
  12. data/bin/doing +368 -21
  13. data/doc/Array.html +135 -0
  14. data/doc/Doing/Color.html +506 -0
  15. data/doc/Doing/Configuration.html +680 -0
  16. data/doc/Doing/Errors/DoingNoTraceError.html +186 -0
  17. data/doc/Doing/Errors/DoingRuntimeError.html +186 -0
  18. data/doc/Doing/Errors/DoingStandardError.html +186 -0
  19. data/doc/Doing/Errors/EmptyInput.html +186 -0
  20. data/doc/Doing/Errors/NoResults.html +186 -0
  21. data/doc/Doing/Errors/PluginException.html +248 -0
  22. data/doc/Doing/Errors/UserCancelled.html +186 -0
  23. data/doc/Doing/Errors/WrongCommand.html +186 -0
  24. data/doc/Doing/Errors.html +191 -0
  25. data/doc/Doing/Hooks.html +364 -0
  26. data/doc/Doing/Item.html +1385 -0
  27. data/doc/Doing/Items.html +393 -0
  28. data/doc/Doing/LogAdapter.html +1650 -0
  29. data/doc/Doing/Note.html +535 -0
  30. data/doc/Doing/Pager.html +268 -0
  31. data/doc/Doing/Plugins.html +849 -0
  32. data/doc/Doing/Util.html +870 -0
  33. data/doc/Doing/WWID.html +4827 -0
  34. data/doc/Doing.html +145 -0
  35. data/doc/GLI/Commands/MarkdownDocumentListener.html +763 -0
  36. data/doc/GLI/Commands.html +115 -0
  37. data/doc/GLI.html +115 -0
  38. data/doc/Hash.html +332 -0
  39. data/doc/Status.html +292 -0
  40. data/doc/String.html +1714 -0
  41. data/doc/Symbol.html +250 -0
  42. data/doc/Time.html +182 -0
  43. data/doc/_index.html +411 -0
  44. data/doc/class_list.html +51 -0
  45. data/doc/css/common.css +1 -0
  46. data/doc/css/full_list.css +58 -0
  47. data/doc/css/style.css +497 -0
  48. data/doc/file.README.html +123 -0
  49. data/doc/file_list.html +56 -0
  50. data/doc/frames.html +17 -0
  51. data/doc/index.html +123 -0
  52. data/doc/js/app.js +314 -0
  53. data/doc/js/full_list.js +216 -0
  54. data/doc/js/jquery.js +4 -0
  55. data/doc/method_list.html +1867 -0
  56. data/doc/top-level-namespace.html +112 -0
  57. data/doing.gemspec +5 -1
  58. data/doing.rdoc +354 -6
  59. data/example_plugin.rb +6 -6
  60. data/lib/doing/array.rb +15 -2
  61. data/lib/doing/configuration.rb +14 -12
  62. data/lib/doing/errors.rb +1 -1
  63. data/lib/doing/hash.rb +1 -1
  64. data/lib/doing/item.rb +113 -23
  65. data/lib/doing/log_adapter.rb +132 -119
  66. data/lib/doing/note.rb +1 -1
  67. data/lib/doing/plugin_manager.rb +5 -5
  68. data/lib/doing/plugins/export/csv_export.rb +1 -1
  69. data/lib/doing/plugins/export/template_export.rb +5 -7
  70. data/lib/doing/plugins/import/calendar_import.rb +8 -2
  71. data/lib/doing/plugins/import/doing_import.rb +10 -10
  72. data/lib/doing/plugins/import/timing_import.rb +12 -4
  73. data/lib/doing/string.rb +96 -21
  74. data/lib/doing/symbol.rb +9 -5
  75. data/lib/doing/time.rb +1 -1
  76. data/lib/doing/util.rb +18 -11
  77. data/lib/doing/version.rb +1 -1
  78. data/lib/doing/wwid.rb +510 -368
  79. data/lib/doing/wwidfile.rb +5 -5
  80. data/lib/doing.rb +2 -1
  81. data/lib/examples/plugins/say_export.rb +6 -6
  82. data/lib/examples/plugins/{templates → wiki_export/templates}/wiki.css +0 -0
  83. data/lib/examples/plugins/{templates → wiki_export/templates}/wiki.haml +0 -0
  84. data/lib/examples/plugins/{templates → wiki_export/templates}/wiki_index.haml +0 -0
  85. data/lib/examples/plugins/{wiki_export.rb → wiki_export/wiki_export.rb} +0 -0
  86. data/rdocfixer.rb +1 -1
  87. data/yard_templates/default/method_details/setup.rb +3 -0
  88. metadata +121 -8
data/doing.rdoc CHANGED
@@ -1,8 +1,11 @@
1
1
  == doing - A CLI for a What Was I Doing system
2
2
 
3
- Doing uses a TaskPaper-like formatting to keep a plain text record of what you've been doing, complete with tag-based time tracking. The command line tool allows you to add entries, annotate with tags and notes, and view your entries with myriad options, with a focus on a "natural" language syntax.
3
+ Doing uses a TaskPaper-like formatting to keep a plain text
4
+ record of what you've been doing, complete with tag-based time tracking. The
5
+ command line tool allows you to add entries, annotate with tags and notes, and
6
+ view your entries with myriad options, with a focus on a "natural" language syntax.
4
7
 
5
- v2.0.7.pre
8
+ v2.0.11
6
9
 
7
10
  === Global Options
8
11
  === --config_file arg
@@ -87,6 +90,14 @@ Boolean used to combine multiple tags
87
90
  [Must Match] (?i-mx:^(?:and|all|any|or|not|none)$)
88
91
 
89
92
 
93
+ ===== --case TYPE
94
+
95
+ Case sensitivity for search string matching [(c)ase-sensitive, (i)gnore, (s)mart]
96
+
97
+ [Default Value] smart
98
+ [Must Match] (?-mix:^[csi])
99
+
100
+
90
101
  ===== --in SECTION_NAME
91
102
 
92
103
  Add new entry to section (default: same section as repeated entry)
@@ -128,11 +139,26 @@ Edit duplicated entry with vim before adding
128
139
 
129
140
 
130
141
 
142
+ ===== --fuzzy
143
+ Use alternative fuzzy matching for search string
144
+
145
+
146
+
131
147
  ===== -i|--interactive
132
148
  Select item to resume from a menu of matching entries
133
149
 
134
150
 
135
151
 
152
+ ===== --not
153
+ Resume items that *don't* match search/tag filters
154
+
155
+
156
+
157
+ ===== -x|--exact
158
+ Force exact search string matching (case sensitive)
159
+
160
+
161
+
136
162
  ==== Command: <tt>archive|move SECTION_OR_TAG</tt>
137
163
  Move entries between sections
138
164
 
@@ -157,6 +183,14 @@ Tag boolean (AND|OR|NOT)
157
183
  [Must Match] (?i-mx:^(?:and|all|any|or|not|none)$)
158
184
 
159
185
 
186
+ ===== --case TYPE
187
+
188
+ Case sensitivity for search string matching [(c)ase-sensitive, (i)gnore, (s)mart]
189
+
190
+ [Default Value] smart
191
+ [Must Match] (?-mix:^[csi])
192
+
193
+
160
194
  ===== -k|--keep X
161
195
 
162
196
  How many items to keep (ignored if archiving by tag or search)
@@ -186,11 +220,26 @@ Tag filter, combine multiple tags with a comma. Added for compatibility with oth
186
220
  [Default Value] None
187
221
 
188
222
 
223
+ ===== --fuzzy
224
+ Use alternative fuzzy matching for search string
225
+
226
+
227
+
189
228
  ===== --[no-]label
190
229
  Label moved items with @from(SECTION_NAME)
191
230
 
192
231
 
193
232
 
233
+ ===== --not
234
+ Show items that *don't* match search string
235
+
236
+
237
+
238
+ ===== -x|--exact
239
+ Force exact search string matching (case sensitive)
240
+
241
+
242
+
194
243
  ==== Command: <tt>autotag </tt>
195
244
  Autotag last entry or filtered entries
196
245
 
@@ -264,6 +313,14 @@ Boolean (AND|OR|NOT) with which to combine multiple tag filters
264
313
  [Must Match] (?i-mx:^(?:and|all|any|or|not|none)$)
265
314
 
266
315
 
316
+ ===== --case TYPE
317
+
318
+ Case sensitivity for search string matching [(c)ase-sensitive, (i)gnore, (s)mart]
319
+
320
+ [Default Value] smart
321
+ [Must Match] (?-mix:^[csi])
322
+
323
+
267
324
  ===== -s|--section NAME
268
325
 
269
326
  Section
@@ -271,6 +328,13 @@ Section
271
328
  [Default Value] None
272
329
 
273
330
 
331
+ ===== --search QUERY
332
+
333
+ Cancel the last X entries matching search filter, surround with slashes for regex (e.g. "/query.*/"), start with single quote for exact match ("'query")
334
+
335
+ [Default Value] None
336
+
337
+
274
338
  ===== --tag TAG
275
339
 
276
340
  Cancel the last X entries containing TAG. Separate multiple tags with comma (--tag=tag1,tag2)
@@ -283,16 +347,31 @@ Archive entries
283
347
 
284
348
 
285
349
 
350
+ ===== --fuzzy
351
+ Use alternative fuzzy matching for search string
352
+
353
+
354
+
286
355
  ===== -i|--interactive
287
356
  Select item(s) to cancel from a menu of matching entries
288
357
 
289
358
 
290
359
 
360
+ ===== --not
361
+ Finish items that *don't* match search/tag filters
362
+
363
+
364
+
291
365
  ===== -u|--unfinished
292
366
  Cancel last entry (or entries) not already marked @done
293
367
 
294
368
 
295
369
 
370
+ ===== -x|--exact
371
+ Force exact search string matching (case sensitive)
372
+
373
+
374
+
296
375
  ==== Command: <tt>choose </tt>
297
376
  Select a section to display from a menu
298
377
 
@@ -473,6 +552,14 @@ Boolean (AND|OR|NOT) with which to combine multiple tag filters
473
552
  [Must Match] (?i-mx:^(?:and|all|any|or|not|none)$)
474
553
 
475
554
 
555
+ ===== --case TYPE
556
+
557
+ Case sensitivity for search string matching [(c)ase-sensitive, (i)gnore, (s)mart]
558
+
559
+ [Default Value] smart
560
+ [Must Match] (?-mix:^[csi])
561
+
562
+
476
563
  ===== -s|--section NAME
477
564
 
478
565
  Section
@@ -519,11 +606,21 @@ Include date
519
606
 
520
607
 
521
608
 
609
+ ===== --fuzzy
610
+ Use alternative fuzzy matching for search string
611
+
612
+
613
+
522
614
  ===== -i|--interactive
523
615
  Select item(s) to finish from a menu of matching entries
524
616
 
525
617
 
526
618
 
619
+ ===== --not
620
+ Finish items that *don't* match search/tag filters
621
+
622
+
623
+
527
624
  ===== -r|--remove
528
625
  Remove done tag
529
626
 
@@ -534,6 +631,11 @@ Finish last entry (or entries) not already marked @done
534
631
 
535
632
 
536
633
 
634
+ ===== -x|--exact
635
+ Force exact search string matching (case sensitive)
636
+
637
+
638
+
537
639
  ==== Command: <tt>grep|search SEARCH_PATTERN</tt>
538
640
  Search for entries
539
641
 
@@ -555,6 +657,14 @@ Constrain search to entries older than date
555
657
  [Default Value] None
556
658
 
557
659
 
660
+ ===== --case TYPE
661
+
662
+ Case sensitivity for search string matching [(c)ase-sensitive, (i)gnore, (s)mart]
663
+
664
+ [Default Value] smart
665
+ [Must Match] (?-mix:^[csi])
666
+
667
+
558
668
  ===== -o|--output FORMAT
559
669
 
560
670
  Output to export format (csv|doing|html|markdown|say|taskpaper|template|timeline|wiki)
@@ -577,11 +687,21 @@ Sort tags by (name|time)
577
687
  [Must Match] (?i-mx:^(?:name|time)$)
578
688
 
579
689
 
690
+ ===== --fuzzy
691
+ Use alternative fuzzy matching for search string
692
+
693
+
694
+
580
695
  ===== -i|--interactive
581
696
  Display an interactive menu of results to perform further operations
582
697
 
583
698
 
584
699
 
700
+ ===== --not
701
+ Show items that *don't* match search string
702
+
703
+
704
+
585
705
  ===== --only_timed
586
706
  Only show items with recorded time intervals
587
707
 
@@ -597,6 +717,11 @@ Show intervals with totals at the end of output
597
717
 
598
718
 
599
719
 
720
+ ===== -x|--exact
721
+ Force exact string matching (case sensitive)
722
+
723
+
724
+
600
725
  ==== Command: <tt>help command</tt>
601
726
  Shows a list of commands or help for one command
602
727
 
@@ -626,6 +751,14 @@ Import entries older than date
626
751
  [Default Value] None
627
752
 
628
753
 
754
+ ===== --case TYPE
755
+
756
+ Case sensitivity for search string matching [(c)ase-sensitive, (i)gnore, (s)mart]
757
+
758
+ [Default Value] smart
759
+ [Must Match] (?-mix:^[csi])
760
+
761
+
629
762
  ===== -f|--from DATE_OR_RANGE
630
763
 
631
764
  Date range to import. Date range argument should be quoted. Date specifications can be natural language.
@@ -675,6 +808,16 @@ Autotag entries
675
808
 
676
809
 
677
810
 
811
+ ===== --fuzzy
812
+ Use alternative fuzzy matching for search string
813
+
814
+
815
+
816
+ ===== --not
817
+ Import items that *don't* match search/tag/date filters
818
+
819
+
820
+
678
821
  ===== --only_timed
679
822
  Only import items with recorded time intervals
680
823
 
@@ -685,6 +828,11 @@ Allow entries that overlap existing times
685
828
 
686
829
 
687
830
 
831
+ ===== -x|--exact
832
+ Force exact search string matching (case sensitive)
833
+
834
+
835
+
688
836
  ==== Command: <tt>last </tt>
689
837
  Show the last entry, optionally edit
690
838
 
@@ -698,6 +846,14 @@ Tag boolean
698
846
  [Must Match] (?i-mx:^(?:and|all|any|or|not|none)$)
699
847
 
700
848
 
849
+ ===== --case TYPE
850
+
851
+ Case sensitivity for search string matching [(c)ase-sensitive, (i)gnore, (s)mart]
852
+
853
+ [Default Value] smart
854
+ [Must Match] (?-mix:^[csi])
855
+
856
+
701
857
  ===== -s|--section NAME
702
858
 
703
859
  Specify a section
@@ -724,6 +880,21 @@ Edit entry with vim
724
880
 
725
881
 
726
882
 
883
+ ===== --fuzzy
884
+ Use alternative fuzzy matching for search string
885
+
886
+
887
+
888
+ ===== --not
889
+ Show items that *don't* match search string or tag filter
890
+
891
+
892
+
893
+ ===== -x|--exact
894
+ Force exact search string matching (case sensitive)
895
+
896
+
897
+
727
898
  ==== Command: <tt>later ENTRY</tt>
728
899
  Add an item to the Later section
729
900
 
@@ -769,6 +940,14 @@ How many recent entries to tag (0 for all)
769
940
  [Must Match] (?-mix:^\d+$)
770
941
 
771
942
 
943
+ ===== --case TYPE
944
+
945
+ Case sensitivity for search string matching [(c)ase-sensitive, (i)gnore, (s)mart]
946
+
947
+ [Default Value] smart
948
+ [Must Match] (?-mix:^[csi])
949
+
950
+
772
951
  ===== -s|--section SECTION_NAME
773
952
 
774
953
  Section
@@ -801,11 +980,21 @@ Don't ask permission to flag all entries when count is 0
801
980
 
802
981
 
803
982
 
983
+ ===== --fuzzy
984
+ Use alternative fuzzy matching for search string
985
+
986
+
987
+
804
988
  ===== -i|--interactive
805
989
  Select item(s) to flag from a menu of matching entries
806
990
 
807
991
 
808
992
 
993
+ ===== --not
994
+ Flag items that *don't* match search/tag/date filters
995
+
996
+
997
+
809
998
  ===== -r|--remove
810
999
  Remove flag
811
1000
 
@@ -816,6 +1005,11 @@ Flag last entry (or entries) not marked @done
816
1005
 
817
1006
 
818
1007
 
1008
+ ===== -x|--exact
1009
+ Force exact search string matching (case sensitive)
1010
+
1011
+
1012
+
819
1013
  ==== Command: <tt>meanwhile ENTRY</tt>
820
1014
  Finish any running @meanwhile tasks and optionally create a new one
821
1015
 
@@ -869,6 +1063,14 @@ Boolean (AND|OR|NOT) with which to combine multiple tag filters
869
1063
  [Must Match] (?i-mx:^(?:and|all|any|or|not|none)$)
870
1064
 
871
1065
 
1066
+ ===== --case TYPE
1067
+
1068
+ Case sensitivity for search string matching [(c)ase-sensitive, (i)gnore, (s)mart]
1069
+
1070
+ [Default Value] smart
1071
+ [Must Match] (?-mix:^[csi])
1072
+
1073
+
872
1074
  ===== -s|--section NAME
873
1075
 
874
1076
  Section
@@ -895,16 +1097,31 @@ Edit entry with vim
895
1097
 
896
1098
 
897
1099
 
1100
+ ===== --fuzzy
1101
+ Use alternative fuzzy matching for search string
1102
+
1103
+
1104
+
898
1105
  ===== -i|--interactive
899
1106
  Select item for new note from a menu of matching entries
900
1107
 
901
1108
 
902
1109
 
1110
+ ===== --not
1111
+ Add note to item that *doesn't* match search/tag filters
1112
+
1113
+
1114
+
903
1115
  ===== -r|--remove
904
1116
  Replace/Remove last entry's note (default append)
905
1117
 
906
1118
 
907
1119
 
1120
+ ===== -x|--exact
1121
+ Force exact search string matching (case sensitive)
1122
+
1123
+
1124
+
908
1125
  ==== Command: <tt>now|next ENTRY</tt>
909
1126
  Add an entry
910
1127
 
@@ -1073,9 +1290,17 @@ Boolean (AND|OR|NOT) with which to combine multiple tag filters
1073
1290
  [Must Match] (?i-mx:^(?:and|all|any|or|not|none)$)
1074
1291
 
1075
1292
 
1293
+ ===== --case TYPE
1294
+
1295
+ Case sensitivity for search string matching [(c)ase-sensitive, (i)gnore, (s)mart]
1296
+
1297
+ [Default Value] smart
1298
+ [Must Match] (?-mix:^[csi])
1299
+
1300
+
1076
1301
  ===== -s|--section NAME
1077
1302
 
1078
- Set the start date of an item to now
1303
+ Limit search to section
1079
1304
 
1080
1305
  [Default Value] All
1081
1306
 
@@ -1094,16 +1319,31 @@ Reset last entry matching tag
1094
1319
  [Default Value] None
1095
1320
 
1096
1321
 
1322
+ ===== --fuzzy
1323
+ Use alternative fuzzy matching for search string
1324
+
1325
+
1326
+
1097
1327
  ===== -i|--interactive
1098
1328
  Select from a menu of matching entries
1099
1329
 
1100
1330
 
1101
1331
 
1332
+ ===== --not
1333
+ Reset items that *don't* match search/tag filters
1334
+
1335
+
1336
+
1102
1337
  ===== -r|--[no-]resume
1103
1338
  Resume entry (remove @done)
1104
1339
 
1105
1340
 
1106
1341
 
1342
+ ===== -x|--exact
1343
+ Force exact search string matching (case sensitive)
1344
+
1345
+
1346
+
1107
1347
  ==== Command: <tt>rotate </tt>
1108
1348
  Move entries to archive file
1109
1349
 
@@ -1125,6 +1365,14 @@ Tag boolean (AND|OR|NOT)
1125
1365
  [Must Match] (?i-mx:^(?:and|all|any|or|not|none)$)
1126
1366
 
1127
1367
 
1368
+ ===== --case TYPE
1369
+
1370
+ Case sensitivity for search string matching [(c)ase-sensitive, (i)gnore, (s)mart]
1371
+
1372
+ [Default Value] smart
1373
+ [Must Match] (?-mix:^[csi])
1374
+
1375
+
1128
1376
  ===== -k|--keep X
1129
1377
 
1130
1378
  How many items to keep in each section (most recent)
@@ -1154,6 +1402,21 @@ Tag filter, combine multiple tags with a comma. Added for compatibility with oth
1154
1402
  [Default Value] None
1155
1403
 
1156
1404
 
1405
+ ===== --fuzzy
1406
+ Use alternative fuzzy matching for search string
1407
+
1408
+
1409
+
1410
+ ===== --not
1411
+ Rotate items that *don't* match search string or tag filter
1412
+
1413
+
1414
+
1415
+ ===== -x|--exact
1416
+ Force exact search string matching (case sensitive)
1417
+
1418
+
1419
+
1157
1420
  ==== Command: <tt>sections </tt>
1158
1421
  List sections
1159
1422
 
@@ -1173,6 +1436,14 @@ Multiple selections are allowed, hit tab to add the highlighted entry to the
1173
1436
  selection, and use ctrl-a to select all visible items. Return processes the
1174
1437
  selected entries.
1175
1438
  ===== Options
1439
+ ===== --case TYPE
1440
+
1441
+ Case sensitivity for search string matching [(c)ase-sensitive, (i)gnore, (s)mart]
1442
+
1443
+ [Default Value] smart
1444
+ [Must Match] (?-mix:^[csi])
1445
+
1446
+
1176
1447
  ===== -m|--move SECTION
1177
1448
 
1178
1449
  Move selected items to section
@@ -1260,11 +1531,21 @@ Use --no-menu to skip the interactive menu. Use with --query to filter items and
1260
1531
 
1261
1532
 
1262
1533
 
1534
+ ===== --not
1535
+ Select items that *don't* match search/tag filters
1536
+
1537
+
1538
+
1263
1539
  ===== -r|--remove
1264
1540
  Reverse -c, -f, --flag, and -t (remove instead of adding)
1265
1541
 
1266
1542
 
1267
1543
 
1544
+ ===== -x|--exact
1545
+ Force exact search string matching (case sensitive)
1546
+
1547
+
1548
+
1268
1549
  ==== Command: <tt>show [SECTION|@TAGS]</tt>
1269
1550
  List all entries
1270
1551
 
@@ -1307,6 +1588,14 @@ Max count to show
1307
1588
  [Default Value] 0
1308
1589
 
1309
1590
 
1591
+ ===== --case TYPE
1592
+
1593
+ Case sensitivity for search string matching [(c)ase-sensitive, (i)gnore, (s)mart]
1594
+
1595
+ [Default Value] smart
1596
+ [Must Match] (?-mix:^[csi])
1597
+
1598
+
1310
1599
  ===== -f|--from DATE_OR_RANGE
1311
1600
 
1312
1601
  Date range to show, or a single day to filter date on.
@@ -1361,11 +1650,21 @@ Sort tags by (name|time)
1361
1650
  [Must Match] (?i-mx:^(?:name|time))
1362
1651
 
1363
1652
 
1653
+ ===== --fuzzy
1654
+ Use alternative fuzzy matching for search string
1655
+
1656
+
1657
+
1364
1658
  ===== -i|--interactive
1365
1659
  Select from a menu of matching entries to perform additional operations
1366
1660
 
1367
1661
 
1368
1662
 
1663
+ ===== --not
1664
+ Show items that *don't* match search/tag/date filters
1665
+
1666
+
1667
+
1369
1668
  ===== --only_timed
1370
1669
  Only show items with recorded time intervals
1371
1670
 
@@ -1381,6 +1680,11 @@ Show intervals with totals at the end of output
1381
1680
 
1382
1681
 
1383
1682
 
1683
+ ===== -x|--exact
1684
+ Force exact search string matching (case sensitive)
1685
+
1686
+
1687
+
1384
1688
  ==== Command: <tt>since DATE_STRING</tt>
1385
1689
  List entries since a date
1386
1690
 
@@ -1452,6 +1756,14 @@ How many recent entries to tag (0 for all)
1452
1756
  [Must Match] (?-mix:^\d+$)
1453
1757
 
1454
1758
 
1759
+ ===== --case TYPE
1760
+
1761
+ Case sensitivity for search string matching [(c)ase-sensitive, (i)gnore, (s)mart]
1762
+
1763
+ [Default Value] smart
1764
+ [Must Match] (?-mix:^[csi])
1765
+
1766
+
1455
1767
  ===== --rename ORIG_TAG
1456
1768
 
1457
1769
  Replace existing tag with tag argument, wildcards (*,?) allowed, or use with --regex
@@ -1496,11 +1808,21 @@ Don't ask permission to tag all entries when count is 0
1496
1808
 
1497
1809
 
1498
1810
 
1811
+ ===== --fuzzy
1812
+ Use alternative fuzzy matching for search string
1813
+
1814
+
1815
+
1499
1816
  ===== -i|--interactive
1500
1817
  Select item(s) to tag from a menu of matching entries
1501
1818
 
1502
1819
 
1503
1820
 
1821
+ ===== --not
1822
+ Tag items that *don't* match search/tag filters
1823
+
1824
+
1825
+
1504
1826
  ===== -r|--remove
1505
1827
  Remove given tag(s)
1506
1828
 
@@ -1516,13 +1838,16 @@ Tag last entry (or entries) not marked @done
1516
1838
 
1517
1839
 
1518
1840
 
1841
+ ===== -x|--exact
1842
+ Force exact search string matching (case sensitive)
1843
+
1844
+
1845
+
1519
1846
  ==== Command: <tt>template TYPE</tt>
1520
1847
  Output HTML, CSS, and Markdown (ERB) templates for customization
1521
1848
 
1522
1849
  Templates are printed to STDOUT for piping to a file.
1523
- Save them and use them in the configuration file under html_template.
1524
-
1525
- Example `doing template haml > ~/styles/my_doing.haml`
1850
+ Save them and use them in the configuration file under export_templates.
1526
1851
  ===== Options
1527
1852
  ===== -c
1528
1853
  List in single column for completion
@@ -1636,6 +1961,14 @@ Count to display
1636
1961
  [Must Match] (?-mix:^\d+$)
1637
1962
 
1638
1963
 
1964
+ ===== --case TYPE
1965
+
1966
+ Case sensitivity for search string matching [(c)ase-sensitive, (i)gnore, (s)mart]
1967
+
1968
+ [Default Value] smart
1969
+ [Must Match] (?-mix:^[csi])
1970
+
1971
+
1639
1972
  ===== -o|--output FORMAT
1640
1973
 
1641
1974
  Output to export format (csv|doing|html|markdown|say|taskpaper|template|timeline|wiki)
@@ -1685,11 +2018,21 @@ Include colors in output
1685
2018
 
1686
2019
 
1687
2020
 
2021
+ ===== --fuzzy
2022
+ Use alternative fuzzy matching for search string
2023
+
2024
+
2025
+
1688
2026
  ===== -i|--interactive
1689
2027
  Select from a menu of matching entries to perform additional operations
1690
2028
 
1691
2029
 
1692
2030
 
2031
+ ===== --not
2032
+ Show items that *don't* match search string
2033
+
2034
+
2035
+
1693
2036
  ===== --only_timed
1694
2037
  Only show items with recorded time intervals (override view settings)
1695
2038
 
@@ -1705,6 +2048,11 @@ Show intervals with totals at the end of output
1705
2048
 
1706
2049
 
1707
2050
 
2051
+ ===== -x|--exact
2052
+ Force exact search string matching (case sensitive)
2053
+
2054
+
2055
+
1708
2056
  ==== Command: <tt>views </tt>
1709
2057
  List available custom views
1710
2058