doing 2.0.11 → 2.0.13

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: fd5337fb3832570e16b9d3572b931c8484f3fe84547aa2ba5db15a4a0a622713
4
- data.tar.gz: e9df16fbd231aeba99a1e4976e7e0f96908f7f1bb0e16e385722db1e6de79548
3
+ metadata.gz: 666eb185b6fd472aab95e2cc55e902b31935a5efd1d42f877999f4482424d9f4
4
+ data.tar.gz: 543c2e95e079c6037aa3e851fd0e1b3fa453413f40b5b40c37e735f47cef883b
5
5
  SHA512:
6
- metadata.gz: 7b30f84f92598bae30f83d476d3989c0fe9a3aff32a7a3e8472be85c235c89e4dfc29f65c3eb9f5cc99076e94d5a00fe93d6291ba00b8e73c823a28407349d07
7
- data.tar.gz: fe71eb8ab551f9f7a240e49c474ce01abde51182300c9c22a18062b25803dffa427714ee22665f34a98947d1742e68a7c4694a92eefddfc82a274489679fa21f
6
+ metadata.gz: 4fafa3abb7d604df5ecf3aaa40ae96ac195ba6969759a197a61056dfc3f4615402707fed3307b2fe1c51872e10b6d0fa904131622ee045fe73b8ac54d2e40324
7
+ data.tar.gz: 6df14adeb8187888002008751239d70054aec9c931df707c83c6eff48f28b4e9d19c0d6b3dd7c25e943096a7dda46b9779cff7befc12d12101eb096873dee4d0
data/CHANGELOG.md CHANGED
@@ -1,3 +1,9 @@
1
+ ### 2.0.13
2
+
3
+ #### FIXED
4
+
5
+ - Remove amatch gem dependency due to compatibility issues with Windows systems (also removes `--fuzzy` option from all search commands)
6
+
1
7
  ### 2.0.11
2
8
 
3
9
  #### NEW
data/Gemfile.lock CHANGED
@@ -1,8 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- doing (2.0.11)
5
- amatch (~> 0.4, >= 0.4.0)
4
+ doing (2.0.13)
6
5
  chronic (~> 0.10, >= 0.10.2)
7
6
  deep_merge (~> 1.2, >= 1.2.1)
8
7
  gli (~> 2.19, >= 2.19.2)
@@ -18,9 +17,6 @@ GEM
18
17
  minitest (>= 5.1)
19
18
  tzinfo (~> 2.0)
20
19
  zeitwerk (~> 2.3)
21
- amatch (0.4.0)
22
- mize
23
- tins (~> 1.0)
24
20
  aruba (1.0.4)
25
21
  childprocess (>= 2.0, < 5.0)
26
22
  contracts (~> 0.16.0)
@@ -75,17 +71,16 @@ GEM
75
71
  concurrent-ruby (~> 1.0)
76
72
  middleware (0.1.0)
77
73
  minitest (5.14.4)
78
- mize (0.4.0)
79
- protocol (~> 2.0)
80
74
  multi_test (0.1.2)
75
+ parallel (1.21.0)
76
+ parallel_tests (3.7.3)
77
+ parallel
81
78
  power_assert (2.0.1)
82
79
  protobuf-cucumber (3.10.8)
83
80
  activesupport (>= 3.2)
84
81
  middleware
85
82
  thor
86
83
  thread_safe
87
- protocol (2.0.0)
88
- ruby_parser (~> 3.0)
89
84
  rake (13.0.6)
90
85
  rdoc (6.3.3)
91
86
  redcarpet (3.5.1)
@@ -93,11 +88,7 @@ GEM
93
88
  diff-lcs (>= 1.2.0, < 2.0)
94
89
  rspec-support (~> 3.10.0)
95
90
  rspec-support (3.10.3)
96
- ruby_parser (3.18.1)
97
- sexp_processor (~> 4.16)
98
91
  safe_yaml (1.0.5)
99
- sexp_processor (4.16.0)
100
- sync (0.5.0)
101
92
  sys-uname (1.2.2)
102
93
  ffi (~> 1.1)
103
94
  temple (0.8.2)
@@ -106,8 +97,6 @@ GEM
106
97
  thor (1.1.0)
107
98
  thread_safe (0.3.6)
108
99
  tilt (2.0.10)
109
- tins (1.29.1)
110
- sync
111
100
  tzinfo (2.0.4)
112
101
  concurrent-ruby (~> 1.0)
113
102
  yard (0.9.26)
@@ -120,6 +109,7 @@ DEPENDENCIES
120
109
  aruba (~> 1.0.2)
121
110
  doing!
122
111
  github-markup
112
+ parallel_tests
123
113
  rake (~> 13.0, >= 13.0.1)
124
114
  rdoc (~> 6.3.1)
125
115
  redcarpet
data/README.md CHANGED
@@ -6,7 +6,7 @@ _If you're one of the rare people like me who find this useful, feel free to [bu
6
6
 
7
7
  <!--README-->
8
8
 
9
- The current version of `doing` is <!--VER-->2.0.10<!--END VER-->.
9
+ The current version of `doing` is <!--VER-->2.0.11<!--END VER-->.
10
10
 
11
11
  Find all of the documentation in the [doing wiki](https://github.com/ttscoff/doing/wiki).
12
12
 
data/Rakefile CHANGED
@@ -6,6 +6,8 @@ require 'rdoc/task'
6
6
  require 'rake/testtask'
7
7
  require 'open3'
8
8
  require 'yard'
9
+ require 'parallel_tests'
10
+ require 'parallel_tests/tasks'
9
11
 
10
12
  YARD::Rake::YardocTask.new do |t|
11
13
  t.files = ['lib/doing/*.rb']
data/bin/doing CHANGED
@@ -1,4 +1,4 @@
1
- #!/usr/bin/env ruby -W1
1
+ #!/usr/bin/env ruby
2
2
  # frozen_string_literal: true
3
3
 
4
4
  $LOAD_PATH.unshift File.join(__dir__, '..', 'lib')
@@ -198,8 +198,8 @@ command %i[reset begin] do |c|
198
198
  c.arg_name 'QUERY'
199
199
  c.flag [:search]
200
200
 
201
- c.desc 'Use alternative fuzzy matching for search string'
202
- c.switch [:fuzzy], default_value: false, negatable: false
201
+ # c.desc '[DEPRECATED] Use alternative fuzzy matching for search string'
202
+ # c.switch [:fuzzy], default_value: false, negatable: false
203
203
 
204
204
  c.desc 'Force exact search string matching (case sensitive)'
205
205
  c.switch %i[x exact], default_value: false, negatable: false
@@ -219,6 +219,7 @@ command %i[reset begin] do |c|
219
219
  c.switch %i[i interactive], negatable: false, default_value: false
220
220
 
221
221
  c.action do |global_options, options, args|
222
+ options[:fuzzy] = false
222
223
  if options[:section]
223
224
  options[:section] = wwid.guess_section(options[:section]) || options[:section].cap_first
224
225
  end
@@ -296,8 +297,8 @@ command :note do |c|
296
297
  c.arg_name 'QUERY'
297
298
  c.flag [:search]
298
299
 
299
- c.desc 'Use alternative fuzzy matching for search string'
300
- c.switch [:fuzzy], default_value: false, negatable: false
300
+ # c.desc '[DEPRECATED] Use alternative fuzzy matching for search string'
301
+ # c.switch [:fuzzy], default_value: false, negatable: false
301
302
 
302
303
  c.desc 'Force exact search string matching (case sensitive)'
303
304
  c.switch %i[x exact], default_value: false, negatable: false
@@ -317,6 +318,7 @@ command :note do |c|
317
318
  c.switch %i[i interactive], negatable: false, default_value: false
318
319
 
319
320
  c.action do |_global_options, options, args|
321
+ options[:fuzzy] = false
320
322
  if options[:section]
321
323
  options[:section] = wwid.guess_section(options[:section]) || options[:section].cap_first
322
324
  end
@@ -854,8 +856,8 @@ command :cancel do |c|
854
856
  c.arg_name 'QUERY'
855
857
  c.flag [:search]
856
858
 
857
- c.desc 'Use alternative fuzzy matching for search string'
858
- c.switch [:fuzzy], default_value: false, negatable: false
859
+ # c.desc '[DEPRECATED] Use alternative fuzzy matching for search string'
860
+ # c.switch [:fuzzy], default_value: false, negatable: false
859
861
 
860
862
  c.desc 'Force exact search string matching (case sensitive)'
861
863
  c.switch %i[x exact], default_value: false, negatable: false
@@ -874,6 +876,7 @@ command :cancel do |c|
874
876
  c.switch %i[i interactive], negatable: false, default_value: false
875
877
 
876
878
  c.action do |_global_options, options, args|
879
+ options[:fuzzy] = false
877
880
  if options[:section]
878
881
  section = wwid.guess_section(options[:section]) || options[:section].cap_first
879
882
  else
@@ -956,8 +959,8 @@ command :finish do |c|
956
959
  c.arg_name 'QUERY'
957
960
  c.flag [:search]
958
961
 
959
- c.desc 'Use alternative fuzzy matching for search string'
960
- c.switch [:fuzzy], default_value: false, negatable: false
962
+ # c.desc '[DEPRECATED] Use alternative fuzzy matching for search string'
963
+ # c.switch [:fuzzy], default_value: false, negatable: false
961
964
 
962
965
  c.desc 'Force exact search string matching (case sensitive)'
963
966
  c.switch %i[x exact], default_value: false, negatable: false
@@ -995,6 +998,7 @@ command :finish do |c|
995
998
  c.switch %i[i interactive], negatable: false, default_value: false
996
999
 
997
1000
  c.action do |_global_options, options, args|
1001
+ options[:fuzzy] = false
998
1002
  unless options[:auto]
999
1003
  if options[:took]
1000
1004
  took = wwid.chronify_qty(options[:took])
@@ -1086,8 +1090,8 @@ command %i[again resume] do |c|
1086
1090
  c.arg_name 'QUERY'
1087
1091
  c.flag [:search]
1088
1092
 
1089
- c.desc 'Use alternative fuzzy matching for search string'
1090
- c.switch [:fuzzy], default_value: false, negatable: false
1093
+ # c.desc '[DEPRECATED] Use alternative fuzzy matching for search string'
1094
+ # c.switch [:fuzzy], default_value: false, negatable: false
1091
1095
 
1092
1096
  c.desc 'Force exact search string matching (case sensitive)'
1093
1097
  c.switch %i[x exact], default_value: false, negatable: false
@@ -1114,6 +1118,7 @@ command %i[again resume] do |c|
1114
1118
  c.switch %i[i interactive], negatable: false, default_value: false
1115
1119
 
1116
1120
  c.action do |_global_options, options, _args|
1121
+ options[:fuzzy] = false
1117
1122
  tags = options[:tag].nil? ? [] : options[:tag].to_tags
1118
1123
 
1119
1124
  options[:case] = options[:case].normalize_case
@@ -1195,8 +1200,8 @@ command :tag do |c|
1195
1200
  c.arg_name 'QUERY'
1196
1201
  c.flag [:search]
1197
1202
 
1198
- c.desc 'Use alternative fuzzy matching for search string'
1199
- c.switch [:fuzzy], default_value: false, negatable: false
1203
+ # c.desc '[DEPRECATED] Use alternative fuzzy matching for search string'
1204
+ # c.switch [:fuzzy], default_value: false, negatable: false
1200
1205
 
1201
1206
  c.desc 'Force exact search string matching (case sensitive)'
1202
1207
  c.switch %i[x exact], default_value: false, negatable: false
@@ -1216,6 +1221,7 @@ command :tag do |c|
1216
1221
  c.switch %i[i interactive], negatable: false, default_value: false
1217
1222
 
1218
1223
  c.action do |_global_options, options, args|
1224
+ options[:fuzzy] = false
1219
1225
  raise MissingArgument, 'You must specify at least one tag' if args.empty? && !options[:autotag]
1220
1226
 
1221
1227
  raise InvalidArgument, '--search and --tag can not be used together' if options[:search] && options[:tag]
@@ -1331,8 +1337,8 @@ command [:mark, :flag] do |c|
1331
1337
  c.arg_name 'QUERY'
1332
1338
  c.flag [:search]
1333
1339
 
1334
- c.desc 'Use alternative fuzzy matching for search string'
1335
- c.switch [:fuzzy], default_value: false, negatable: false
1340
+ # c.desc '[DEPRECATED] Use alternative fuzzy matching for search string'
1341
+ # c.switch [:fuzzy], default_value: false, negatable: false
1336
1342
 
1337
1343
  c.desc 'Force exact search string matching (case sensitive)'
1338
1344
  c.switch %i[x exact], default_value: false, negatable: false
@@ -1352,6 +1358,7 @@ command [:mark, :flag] do |c|
1352
1358
  c.switch %i[i interactive], negatable: false, default_value: false
1353
1359
 
1354
1360
  c.action do |_global_options, options, _args|
1361
+ options[:fuzzy] = false
1355
1362
  mark = settings['marker_tag'] || 'flagged'
1356
1363
 
1357
1364
  raise InvalidArgument, '--search and --tag can not be used together' if options[:search] && options[:tag]
@@ -1459,8 +1466,8 @@ command :show do |c|
1459
1466
  c.arg_name 'QUERY'
1460
1467
  c.flag [:search]
1461
1468
 
1462
- c.desc 'Use alternative fuzzy matching for search string'
1463
- c.switch [:fuzzy], default_value: false, negatable: false
1469
+ # c.desc '[DEPRECATED] Use alternative fuzzy matching for search string'
1470
+ # c.switch [:fuzzy], default_value: false, negatable: false
1464
1471
 
1465
1472
  c.desc 'Force exact search string matching (case sensitive)'
1466
1473
  c.switch %i[x exact], default_value: false, negatable: false
@@ -1510,6 +1517,7 @@ command :show do |c|
1510
1517
  c.arg_name 'FORMAT'
1511
1518
  c.flag %i[o output]
1512
1519
  c.action do |global_options, options, args|
1520
+ options[:fuzzy] = false
1513
1521
  raise DoingRuntimeError, %(Invalid output type "#{options[:output]}") if options[:output] && options[:output] !~ Doing::Plugins.plugin_regex(type: :export)
1514
1522
 
1515
1523
  tag_filter = false
@@ -1646,8 +1654,8 @@ command %i[grep search] do |c|
1646
1654
  c.desc 'Only show items with recorded time intervals'
1647
1655
  c.switch [:only_timed], default_value: false, negatable: false
1648
1656
 
1649
- c.desc 'Use alternative fuzzy matching for search string'
1650
- c.switch [:fuzzy], default_value: false, negatable: false
1657
+ # c.desc '[DEPRECATED] Use alternative fuzzy matching for search string'
1658
+ # c.switch [:fuzzy], default_value: false, negatable: false
1651
1659
 
1652
1660
  c.desc 'Force exact string matching (case sensitive)'
1653
1661
  c.switch %i[x exact], default_value: false, negatable: false
@@ -1663,6 +1671,7 @@ command %i[grep search] do |c|
1663
1671
  c.switch %i[i interactive], default_value: false, negatable: false
1664
1672
 
1665
1673
  c.action do |_global_options, options, args|
1674
+ options[:fuzzy] = false
1666
1675
  raise DoingRuntimeError, %(Invalid output type "#{options[:output]}") if options[:output] && options[:output] !~ Doing::Plugins.plugin_regex(type: :export)
1667
1676
 
1668
1677
  tags_color = settings.key?('tags_color') ? settings['tags_color'] : nil
@@ -1995,8 +2004,8 @@ command :last do |c|
1995
2004
  c.arg_name 'QUERY'
1996
2005
  c.flag [:search]
1997
2006
 
1998
- c.desc 'Use alternative fuzzy matching for search string'
1999
- c.switch [:fuzzy], default_value: false, negatable: false
2007
+ # c.desc '[DEPRECATED] Use alternative fuzzy matching for search string'
2008
+ # c.switch [:fuzzy], default_value: false, negatable: false
2000
2009
 
2001
2010
  c.desc 'Force exact search string matching (case sensitive)'
2002
2011
  c.switch %i[x exact], default_value: false, negatable: false
@@ -2009,6 +2018,7 @@ command :last do |c|
2009
2018
  c.flag [:case], must_match: /^[csi]/, default_value: 'smart'
2010
2019
 
2011
2020
  c.action do |global_options, options, _args|
2021
+ options[:fuzzy] = false
2012
2022
  raise InvalidArgument, '--tag and --search can not be used together' if options[:tag] && options[:search]
2013
2023
 
2014
2024
  if options[:tag].nil?
@@ -2197,8 +2207,8 @@ command :view do |c|
2197
2207
  c.arg_name 'QUERY'
2198
2208
  c.flag [:search]
2199
2209
 
2200
- c.desc 'Use alternative fuzzy matching for search string'
2201
- c.switch [:fuzzy], default_value: false, negatable: false
2210
+ # c.desc '[DEPRECATED] Use alternative fuzzy matching for search string'
2211
+ # c.switch [:fuzzy], default_value: false, negatable: false
2202
2212
 
2203
2213
  c.desc 'Force exact search string matching (case sensitive)'
2204
2214
  c.switch %i[x exact], default_value: false, negatable: false
@@ -2233,6 +2243,7 @@ command :view do |c|
2233
2243
  c.switch %i[i interactive], negatable: false, default_value: false
2234
2244
 
2235
2245
  c.action do |global_options, options, args|
2246
+ options[:fuzzy] = false
2236
2247
  raise DoingRuntimeError, %(Invalid output type "#{options[:output]}") if options[:output] && options[:output] !~ Doing::Plugins.plugin_regex(type: :export)
2237
2248
 
2238
2249
  raise InvalidArgument, '--tag and --search can not be used together' if options[:tag] && options[:search]
@@ -2424,8 +2435,8 @@ command %i[archive move] do |c|
2424
2435
  c.arg_name 'QUERY'
2425
2436
  c.flag [:search]
2426
2437
 
2427
- c.desc 'Use alternative fuzzy matching for search string'
2428
- c.switch [:fuzzy], default_value: false, negatable: false
2438
+ # c.desc '[DEPRECATED] Use alternative fuzzy matching for search string'
2439
+ # c.switch [:fuzzy], default_value: false, negatable: false
2429
2440
 
2430
2441
  c.desc 'Force exact search string matching (case sensitive)'
2431
2442
  c.switch %i[x exact], default_value: false, negatable: false
@@ -2443,6 +2454,7 @@ command %i[archive move] do |c|
2443
2454
  c.flag [:before]
2444
2455
 
2445
2456
  c.action do |_global_options, options, args|
2457
+ options[:fuzzy] = false
2446
2458
  if args.empty?
2447
2459
  section = settings['current_section']
2448
2460
  tags = []
@@ -2505,8 +2517,8 @@ command :rotate do |c|
2505
2517
  c.arg_name 'QUERY'
2506
2518
  c.flag [:search]
2507
2519
 
2508
- c.desc 'Use alternative fuzzy matching for search string'
2509
- c.switch [:fuzzy], default_value: false, negatable: false
2520
+ # c.desc '[DEPRECATED] Use alternative fuzzy matching for search string'
2521
+ # c.switch [:fuzzy], default_value: false, negatable: false
2510
2522
 
2511
2523
  c.desc 'Force exact search string matching (case sensitive)'
2512
2524
  c.switch %i[x exact], default_value: false, negatable: false
@@ -2524,6 +2536,7 @@ command :rotate do |c|
2524
2536
  c.flag [:before]
2525
2537
 
2526
2538
  c.action do |_global_options, options, args|
2539
+ options[:fuzzy] = false
2527
2540
  if options[:section] && options[:section] !~ /^all$/i
2528
2541
  options[:section] = wwid.guess_section(options[:section])
2529
2542
  end
@@ -2728,8 +2741,8 @@ command :import do |c|
2728
2741
  c.arg_name 'QUERY'
2729
2742
  c.flag [:search]
2730
2743
 
2731
- c.desc 'Use alternative fuzzy matching for search string'
2732
- c.switch [:fuzzy], default_value: false, negatable: false
2744
+ # c.desc '[DEPRECATED] Use alternative fuzzy matching for search string'
2745
+ # c.switch [:fuzzy], default_value: false, negatable: false
2733
2746
 
2734
2747
  c.desc 'Force exact search string matching (case sensitive)'
2735
2748
  c.switch %i[x exact], default_value: false, negatable: false
@@ -2779,7 +2792,7 @@ command :import do |c|
2779
2792
  c.switch [:overlap], negatable: true
2780
2793
 
2781
2794
  c.action do |_global_options, options, args|
2782
-
2795
+ options[:fuzzy] = false
2783
2796
  if options[:section]
2784
2797
  options[:section] = wwid.guess_section(options[:section]) || options[:section].cap_first
2785
2798
  end
data/doing.gemspec CHANGED
@@ -30,9 +30,10 @@ spec = Gem::Specification.new do |s|
30
30
  s.add_development_dependency 'yard'
31
31
  s.add_development_dependency 'redcarpet'
32
32
  s.add_development_dependency 'github-markup'
33
+ s.add_development_dependency 'parallel_tests'
33
34
  s.add_runtime_dependency('gli', '~> 2.19', '>= 2.19.2')
34
35
  s.add_runtime_dependency('haml','~>5.0.0', '>= 5.0.0')
35
36
  s.add_runtime_dependency('chronic','~> 0.10', '>= 0.10.2')
36
37
  s.add_runtime_dependency('deep_merge', '~> 1.2', '>= 1.2.1')
37
- s.add_runtime_dependency('amatch', '~> 0.4', '>= 0.4.0')
38
+ # s.add_runtime_dependency('amatch', '~> 0.4', '>= 0.4.0')
38
39
  end
data/doing.rdoc CHANGED
@@ -5,7 +5,7 @@ record of what you've been doing, complete with tag-based time tracking. The
5
5
  command line tool allows you to add entries, annotate with tags and notes, and
6
6
  view your entries with myriad options, with a focus on a "natural" language syntax.
7
7
 
8
- v2.0.11
8
+ v2.0.13
9
9
 
10
10
  === Global Options
11
11
  === --config_file arg
@@ -139,11 +139,6 @@ Edit duplicated entry with vim before adding
139
139
 
140
140
 
141
141
 
142
- ===== --fuzzy
143
- Use alternative fuzzy matching for search string
144
-
145
-
146
-
147
142
  ===== -i|--interactive
148
143
  Select item to resume from a menu of matching entries
149
144
 
@@ -220,11 +215,6 @@ Tag filter, combine multiple tags with a comma. Added for compatibility with oth
220
215
  [Default Value] None
221
216
 
222
217
 
223
- ===== --fuzzy
224
- Use alternative fuzzy matching for search string
225
-
226
-
227
-
228
218
  ===== --[no-]label
229
219
  Label moved items with @from(SECTION_NAME)
230
220
 
@@ -347,11 +337,6 @@ Archive entries
347
337
 
348
338
 
349
339
 
350
- ===== --fuzzy
351
- Use alternative fuzzy matching for search string
352
-
353
-
354
-
355
340
  ===== -i|--interactive
356
341
  Select item(s) to cancel from a menu of matching entries
357
342
 
@@ -606,11 +591,6 @@ Include date
606
591
 
607
592
 
608
593
 
609
- ===== --fuzzy
610
- Use alternative fuzzy matching for search string
611
-
612
-
613
-
614
594
  ===== -i|--interactive
615
595
  Select item(s) to finish from a menu of matching entries
616
596
 
@@ -687,11 +667,6 @@ Sort tags by (name|time)
687
667
  [Must Match] (?i-mx:^(?:name|time)$)
688
668
 
689
669
 
690
- ===== --fuzzy
691
- Use alternative fuzzy matching for search string
692
-
693
-
694
-
695
670
  ===== -i|--interactive
696
671
  Display an interactive menu of results to perform further operations
697
672
 
@@ -808,11 +783,6 @@ Autotag entries
808
783
 
809
784
 
810
785
 
811
- ===== --fuzzy
812
- Use alternative fuzzy matching for search string
813
-
814
-
815
-
816
786
  ===== --not
817
787
  Import items that *don't* match search/tag/date filters
818
788
 
@@ -880,11 +850,6 @@ Edit entry with vim
880
850
 
881
851
 
882
852
 
883
- ===== --fuzzy
884
- Use alternative fuzzy matching for search string
885
-
886
-
887
-
888
853
  ===== --not
889
854
  Show items that *don't* match search string or tag filter
890
855
 
@@ -980,11 +945,6 @@ Don't ask permission to flag all entries when count is 0
980
945
 
981
946
 
982
947
 
983
- ===== --fuzzy
984
- Use alternative fuzzy matching for search string
985
-
986
-
987
-
988
948
  ===== -i|--interactive
989
949
  Select item(s) to flag from a menu of matching entries
990
950
 
@@ -1097,11 +1057,6 @@ Edit entry with vim
1097
1057
 
1098
1058
 
1099
1059
 
1100
- ===== --fuzzy
1101
- Use alternative fuzzy matching for search string
1102
-
1103
-
1104
-
1105
1060
  ===== -i|--interactive
1106
1061
  Select item for new note from a menu of matching entries
1107
1062
 
@@ -1319,11 +1274,6 @@ Reset last entry matching tag
1319
1274
  [Default Value] None
1320
1275
 
1321
1276
 
1322
- ===== --fuzzy
1323
- Use alternative fuzzy matching for search string
1324
-
1325
-
1326
-
1327
1277
  ===== -i|--interactive
1328
1278
  Select from a menu of matching entries
1329
1279
 
@@ -1402,11 +1352,6 @@ Tag filter, combine multiple tags with a comma. Added for compatibility with oth
1402
1352
  [Default Value] None
1403
1353
 
1404
1354
 
1405
- ===== --fuzzy
1406
- Use alternative fuzzy matching for search string
1407
-
1408
-
1409
-
1410
1355
  ===== --not
1411
1356
  Rotate items that *don't* match search string or tag filter
1412
1357
 
@@ -1650,11 +1595,6 @@ Sort tags by (name|time)
1650
1595
  [Must Match] (?i-mx:^(?:name|time))
1651
1596
 
1652
1597
 
1653
- ===== --fuzzy
1654
- Use alternative fuzzy matching for search string
1655
-
1656
-
1657
-
1658
1598
  ===== -i|--interactive
1659
1599
  Select from a menu of matching entries to perform additional operations
1660
1600
 
@@ -1808,11 +1748,6 @@ Don't ask permission to tag all entries when count is 0
1808
1748
 
1809
1749
 
1810
1750
 
1811
- ===== --fuzzy
1812
- Use alternative fuzzy matching for search string
1813
-
1814
-
1815
-
1816
1751
  ===== -i|--interactive
1817
1752
  Select item(s) to tag from a menu of matching entries
1818
1753
 
@@ -2018,11 +1953,6 @@ Include colors in output
2018
1953
 
2019
1954
 
2020
1955
 
2021
- ===== --fuzzy
2022
- Use alternative fuzzy matching for search string
2023
-
2024
-
2025
-
2026
1956
  ===== -i|--interactive
2027
1957
  Select from a menu of matching entries to perform additional operations
2028
1958