Skip to content

Commit 4b5d5c3

Browse files
committed
Merge branch 'develop'
2 parents fb44674 + bd230d1 commit 4b5d5c3

26 files changed

+78
-2
lines changed

PACKAGES.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -212,6 +212,10 @@ This file contains a list of possible packages you may need to install to see th
212212

213213
- [NimLime](https://packagecontrol.io/packages/NimLime)
214214

215+
## Nix
216+
217+
- [Nix](https://packagecontrol.io/packages/Nix)
218+
215219
## Notes
216220

217221
- [PlainNotes](https://packagecontrol.io/packages/PlainNotes)
@@ -356,6 +360,10 @@ This file contains a list of possible packages you may need to install to see th
356360
- [TypeScript](https://packagecontrol.io/packages/TypeScript)
357361
- [TypeScript Syntax](https://packagecontrol.io/packages/TypeScript%20Syntax)
358362

363+
## Typst
364+
365+
- [Typst](https://github.com/hyrious/typst-syntax-highlight)
366+
359367
## V
360368

361369
- [V](https://packagecontrol.io/packages/V)

icons/icons.json

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -949,6 +949,14 @@
949949
"name": "Git Blame",
950950
"scope": "text.git.blame"
951951
},
952+
{
953+
"extensions": [
954+
"description",
955+
".gitdescription"
956+
],
957+
"name": "Git Description",
958+
"scope": "text.git.description"
959+
},
952960
{
953961
"extensions": [
954962
".gitkeep"
@@ -1629,6 +1637,18 @@
16291637
}
16301638
]
16311639
},
1640+
"file_type_nix": {
1641+
"color": "sky",
1642+
"syntaxes": [
1643+
{
1644+
"extensions": [
1645+
"nix"
1646+
],
1647+
"name": "Plain Text (Nix)",
1648+
"scope": "source.nix"
1649+
}
1650+
]
1651+
},
16321652
"file_type_nodejs": {
16331653
"aliases": [
16341654
{
@@ -2801,6 +2821,18 @@
28012821
}
28022822
]
28032823
},
2824+
"file_type_typst": {
2825+
"color": "cyan",
2826+
"syntaxes": [
2827+
{
2828+
"extensions": [
2829+
"typ"
2830+
],
2831+
"name": "Typst",
2832+
"scope": "source.typst"
2833+
}
2834+
]
2835+
},
28042836
"file_type_unity3d": {
28052837
"color": "sky",
28062838
"syntaxes": [

icons/multi/file_type_nix.png

583 Bytes
Loading

icons/multi/file_type_nix@2x.png

1012 Bytes
Loading

icons/multi/file_type_nix@3x.png

1.53 KB
Loading

icons/multi/file_type_typst.png

254 Bytes
Loading

icons/multi/file_type_typst@2x.png

406 Bytes
Loading

icons/multi/file_type_typst@3x.png

561 Bytes
Loading

icons/single/file_type_nix.png

372 Bytes
Loading

icons/single/file_type_nix@2x.png

679 Bytes
Loading

icons/single/file_type_nix@3x.png

1.02 KB
Loading

icons/single/file_type_typst.png

210 Bytes
Loading

icons/single/file_type_typst@2x.png

321 Bytes
Loading

icons/single/file_type_typst@3x.png

439 Bytes
Loading

icons/svg/file_type_nix.svg

Lines changed: 8 additions & 0 deletions
Loading

icons/svg/file_type_typst.svg

Lines changed: 4 additions & 0 deletions
Loading

plugin.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
if module_name.startswith(prefix) and module_name != __name__
1414
]:
1515
del sys.modules[module_name]
16-
prefix = None
16+
del prefix
1717

1818
from .core import aliases
1919
from .core import overlay

preferences/file_type_git.tmPreferences

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<plist version="1.0">
33
<dict>
44
<key>scope</key>
5-
<string>source.git, source.shell.git, text.git, text.git.blame, text.git.keep</string>
5+
<string>source.git, source.shell.git, text.git, text.git.blame, text.git.description, text.git.keep</string>
66
<key>settings</key>
77
<dict>
88
<key>icon</key>
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<plist version="1.0">
3+
<dict>
4+
<key>scope</key>
5+
<string>source.nix</string>
6+
<key>settings</key>
7+
<dict>
8+
<key>icon</key>
9+
<string>file_type_nix</string>
10+
</dict>
11+
</dict>
12+
</plist>
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<plist version="1.0">
3+
<dict>
4+
<key>scope</key>
5+
<string>source.typst</string>
6+
<key>settings</key>
7+
<dict>
8+
<key>icon</key>
9+
<string>file_type_typst</string>
10+
</dict>
11+
</dict>
12+
</plist>

tests/.git-blame-ignore-revs

Whitespace-only changes.

tests/.gitdescription

Whitespace-only changes.

tests/description

Whitespace-only changes.

tests/file_type_nix.nix

Whitespace-only changes.

tests/file_type_typst.typ

Whitespace-only changes.

tests/git-blame-ignore-revs

Whitespace-only changes.

0 commit comments

Comments
 (0)