snibbets 2.0.24 → 2.0.26

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: 26658cec9cb3753794a7f34d33e8f22f251096668251eb776e884e5f65834e4b
4
- data.tar.gz: 151eb76ee1036d1724c7618e8c8c1aa454039aeaca90abb58e839e9906d616b0
3
+ metadata.gz: 8268903f7b48cbc4e12e42e09fc99c5062f6b5f1bf49e6e7a0033d1c759a2069
4
+ data.tar.gz: d880b58db9f6f7b849de94157816a4c48774dadbadc977ea109839201194e56d
5
5
  SHA512:
6
- metadata.gz: 30f9cc2d5bf2dd06ddca1abbf7fb7c360811008b3f90f0066661cd57dfac02c936deb6ec5fc08441102bdaba06b9308f003cb7cf0a179788e6a907124ee21e8a
7
- data.tar.gz: bd723669573ace92c3c8b10b8c39c22c0f6483d46e217852788e257cd924ef70c86fb25316b8e9b1a0144409d284947059955088e6b19ccf2ecc198dbd10b89e
6
+ metadata.gz: a06043d9c6684b6a3fd1d1ec6f813d1a4e1148d99534278561b6359a63083b5766c83c3ff5910b2ba424cef31fc2024f23d147ee20b24ef204c15312f67f601a
7
+ data.tar.gz: db1de38bd67085f64e9d1c85ff68ed7f03e29ec335f2cd988925fb4b93d49f4ba0b69612831ddfba1414c7e3cad1750c4ddcd8f7f25184935c3b1e69d70656cd
data/CHANGELOG.md CHANGED
@@ -1,3 +1,38 @@
1
+ ### 2.0.26
2
+
3
+ 2023-04-16 11:18
4
+
5
+ #### NEW
6
+
7
+ - `--nvultra` will open the selected snippet in nvUltra
8
+
9
+ #### IMPROVED
10
+
11
+ - Use Readline for entering info with `--paste`, allows for better editing experience
12
+ - Allow `--edit` with `--paste` to open the new snippet in your editor immediately
13
+
14
+ #### FIXED
15
+
16
+ - Code indentation with `--paste`
17
+ - Nil error when highlighting without extension
18
+
19
+ ### 2.0.25
20
+
21
+ 2023-04-16 11:09
22
+
23
+ #### NEW
24
+
25
+ - `--nvultra` will open the selected snippet in nvUltra
26
+
27
+ #### IMPROVED
28
+
29
+ - Use Readline for entering info with `--paste`, allows for better editing experience
30
+ - Allow `--edit` with `--paste` to open the new snippet in your editor immediately
31
+
32
+ #### FIXED
33
+
34
+ - Code indentation with `--paste`
35
+
1
36
  ### 2.0.24
2
37
 
3
38
  2023-04-16 10:49
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- snibbets (2.0.24)
4
+ snibbets (2.0.26)
5
5
  mdless (~> 1.0, >= 1.0.32)
6
6
  tty-reader (~> 0.9, >= 0.9.0)
7
7
  tty-which (~> 0.5, >= 0.5.0)
data/README.md CHANGED
@@ -155,7 +155,7 @@ Snibbet's implementation of Skylighting has limited but better-looking themes, a
155
155
  ### Usage
156
156
 
157
157
  ```
158
- Snibbets v2.0.24
158
+ Snibbets v2.0.26
159
159
 
160
160
  Usage: snibbets [options] query
161
161
  -a, --all If a file contains multiple snippets, output all of them (no menu)
@@ -28,17 +28,23 @@ module Snibbets
28
28
  end
29
29
 
30
30
  def ext_to_lang(ext)
31
+ return nil if ext.nil?
32
+
31
33
  matches = lexers.select { |lex| lex[:extensions].map(&:downcase).include?(ext.downcase) }
32
34
  matches.map { |lex| lex[:lexer] }.first || ext
33
35
  end
34
36
 
35
37
  def lang_to_ext(lexer)
38
+ return nil if lexer.nil?
39
+
36
40
  matches = lexers.select { |lex| lex[:lexer] == lexer || lex[:aliases].map(&:downcase).include?(lexer.downcase) }
37
41
  matches.map { |lex| lex[:extensions].first }.first || lexer
38
42
  end
39
43
 
40
44
  def syntax_from_extension(filename)
41
45
  exts = filename.split(/\./)[1..-2]
46
+ return nil if exts.count.zero?
47
+
42
48
  ext_to_lang(exts[-1])
43
49
  end
44
50
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Snibbets
4
- VERSION = '2.0.24'
4
+ VERSION = '2.0.26'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: snibbets
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.24
4
+ version: 2.0.26
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brett Terpstra