snibbets 2.0.24 → 2.0.25
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +17 -0
- data/Gemfile.lock +1 -1
- data/README.md +1 -1
- data/lib/snibbets/lexers.rb +2 -2
- data/lib/snibbets/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3b985def8adf2eefbe7b5f52bc67d909a8d156361f72b30e48df434946648490
|
4
|
+
data.tar.gz: 146c828808bea3f147e18852a6bcd362dd894a4e451c6abb1dd1ae0fcc8570f7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: be4e25292cfd9f4b1d13e67b7e211916a6bff4d6acd231f1c64da927901812226267880dac66b68cdc628b79455fbe4ed9e2a7cae869f24b23a60c8d7d82e234
|
7
|
+
data.tar.gz: 864ffc66ca4fccf693743ccc2f02990ba0f6ea804de561471c285d14bb8b48b321d8aba8c397b4c1cd219ff2604a09ff2c4660ad97a7caff4c017a93991af952
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,20 @@
|
|
1
|
+
### 2.0.25
|
2
|
+
|
3
|
+
2023-04-16 11:09
|
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
|
+
|
1
18
|
### 2.0.24
|
2
19
|
|
3
20
|
2023-04-16 10:49
|
data/Gemfile.lock
CHANGED
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.
|
158
|
+
Snibbets v2.0.25
|
159
159
|
|
160
160
|
Usage: snibbets [options] query
|
161
161
|
-a, --all If a file contains multiple snippets, output all of them (no menu)
|
data/lib/snibbets/lexers.rb
CHANGED
@@ -28,12 +28,12 @@ module Snibbets
|
|
28
28
|
end
|
29
29
|
|
30
30
|
def ext_to_lang(ext)
|
31
|
-
matches = lexers.select { |lex| lex[:extensions]
|
31
|
+
matches = lexers.select { |lex| lex[:extensions]&.include?(ext.downcase) }
|
32
32
|
matches.map { |lex| lex[:lexer] }.first || ext
|
33
33
|
end
|
34
34
|
|
35
35
|
def lang_to_ext(lexer)
|
36
|
-
matches = lexers.select { |lex| lex[:lexer] == lexer || lex[:aliases]
|
36
|
+
matches = lexers.select { |lex| lex[:lexer] == lexer || lex[:aliases]&.include?(lexer.downcase) }
|
37
37
|
matches.map { |lex| lex[:extensions].first }.first || lexer
|
38
38
|
end
|
39
39
|
|
data/lib/snibbets/version.rb
CHANGED