howzit 2.0.32 → 2.0.34

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 60d256888b71fff3d25c94ba6cf19bf8cbfcc9b683b220ac129ebe4def27c3ad
4
- data.tar.gz: 57b4585039f4d277c88160402fcef38c5fc77c2c600f7e9008db6ffc2cfc6dd4
3
+ metadata.gz: 3c2e8aec0ff890ed7c44ef8408de0661815ecc9de2af2c7b2a1a792186d00a02
4
+ data.tar.gz: b9564b552071749654a60087304b8c8ccc3ac70452434de8de8502267b7b79d9
5
5
  SHA512:
6
- metadata.gz: 7b9aa6a457a57ee619999b274d0371a18d99e6f2da8cc1ca6334a67e99e5e7010457a7b384a4be0b2b8ae0bbcb1cec5eac8061ab77dd817f38f21b8b559d6eff
7
- data.tar.gz: c9d2b38a01f78bcad831a37bd14b35c9c1b20d106fd908c0088c6750d4aaa365ed75546b904e06a1a922fbf73982be530ebc9ffe0c65e74201d4375ace9b97c0
6
+ metadata.gz: 214bbba16b9e9a2fcc4b5ee4f4331448e09fcc0a4101fea02d69433a22e1edf8bec348d5022c7a38b95b7af25000ac4a111b65202b1bdc45a766f9d17a2d4337
7
+ data.tar.gz: 4364000c0df9ebeb7415034847e25e5aa90ac9c81ca94b86a877f7e781ef8227bc001ee76340e39d06763035be244fa8b79e81ceca066e5735a1c73ee7b98f16
data/CHANGELOG.md CHANGED
@@ -1,3 +1,15 @@
1
+ ### 2.0.34
2
+
3
+ 2023-01-15 13:32
4
+
5
+ #### FIXED
6
+
7
+ - Fail to partial match include commands after running fzf
8
+
9
+ ### 2.0.33
10
+
11
+ 2023-01-15 13:26
12
+
1
13
  ### 2.0.32
2
14
 
3
15
  2023-01-15 10:46
@@ -786,8 +786,10 @@ module Howzit
786
786
  else
787
787
  titles = matches.map { |topic| topic.title }
788
788
  res = Prompt.choose(titles)
789
+ old_matching = Howzit.options[:matching]
789
790
  Howzit.options[:matching] = 'exact'
790
791
  res.each { |title| topic_matches.concat(find_topic(title)) }
792
+ Howzit.options[:matching] = old_matching
791
793
  end
792
794
  end
793
795
  end
@@ -83,7 +83,6 @@ module Howzit
83
83
  Color.template(self)
84
84
  end
85
85
 
86
-
87
86
  ##
88
87
  ## Convert a string to a regex object based on matching settings
89
88
  ##
@@ -3,5 +3,5 @@
3
3
  # Primary module for this gem.
4
4
  module Howzit
5
5
  # Current Howzit version.
6
- VERSION = '2.0.32'
6
+ VERSION = '2.0.34'
7
7
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: howzit
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.32
4
+ version: 2.0.34
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brett Terpstra