Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
deathaxe committed May 7, 2023
2 parents fb44674 + bd230d1 commit 4b5d5c3
Show file tree
Hide file tree
Showing 26 changed files with 78 additions and 2 deletions.
8 changes: 8 additions & 0 deletions PACKAGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -212,6 +212,10 @@ This file contains a list of possible packages you may need to install to see th

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

## Nix

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

## Notes

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

## Typst

- [Typst](https://github.com/hyrious/typst-syntax-highlight)

## V

- [V](https://packagecontrol.io/packages/V)
Expand Down
32 changes: 32 additions & 0 deletions icons/icons.json
Original file line number Diff line number Diff line change
Expand Up @@ -949,6 +949,14 @@
"name": "Git Blame",
"scope": "text.git.blame"
},
{
"extensions": [
"description",
".gitdescription"
],
"name": "Git Description",
"scope": "text.git.description"
},
{
"extensions": [
".gitkeep"
Expand Down Expand Up @@ -1629,6 +1637,18 @@
}
]
},
"file_type_nix": {
"color": "sky",
"syntaxes": [
{
"extensions": [
"nix"
],
"name": "Plain Text (Nix)",
"scope": "source.nix"
}
]
},
"file_type_nodejs": {
"aliases": [
{
Expand Down Expand Up @@ -2801,6 +2821,18 @@
}
]
},
"file_type_typst": {
"color": "cyan",
"syntaxes": [
{
"extensions": [
"typ"
],
"name": "Typst",
"scope": "source.typst"
}
]
},
"file_type_unity3d": {
"color": "sky",
"syntaxes": [
Expand Down
Binary file added icons/multi/file_type_nix.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added icons/multi/[email protected]
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added icons/multi/[email protected]
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added icons/multi/file_type_typst.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added icons/multi/[email protected]
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added icons/multi/[email protected]
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added icons/single/file_type_nix.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added icons/single/[email protected]
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added icons/single/[email protected]
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added icons/single/file_type_typst.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added icons/single/[email protected]
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added icons/single/[email protected]
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 8 additions & 0 deletions icons/svg/file_type_nix.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions icons/svg/file_type_typst.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
if module_name.startswith(prefix) and module_name != __name__
]:
del sys.modules[module_name]
prefix = None
del prefix

from .core import aliases
from .core import overlay
Expand Down
2 changes: 1 addition & 1 deletion preferences/file_type_git.tmPreferences
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<plist version="1.0">
<dict>
<key>scope</key>
<string>source.git, source.shell.git, text.git, text.git.blame, text.git.keep</string>
<string>source.git, source.shell.git, text.git, text.git.blame, text.git.description, text.git.keep</string>
<key>settings</key>
<dict>
<key>icon</key>
Expand Down
12 changes: 12 additions & 0 deletions preferences/file_type_nix.tmPreferences
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<?xml version="1.0" encoding="UTF-8"?>
<plist version="1.0">
<dict>
<key>scope</key>
<string>source.nix</string>
<key>settings</key>
<dict>
<key>icon</key>
<string>file_type_nix</string>
</dict>
</dict>
</plist>
12 changes: 12 additions & 0 deletions preferences/file_type_typst.tmPreferences
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<?xml version="1.0" encoding="UTF-8"?>
<plist version="1.0">
<dict>
<key>scope</key>
<string>source.typst</string>
<key>settings</key>
<dict>
<key>icon</key>
<string>file_type_typst</string>
</dict>
</dict>
</plist>
Empty file added tests/.git-blame-ignore-revs
Empty file.
Empty file added tests/.gitdescription
Empty file.
Empty file added tests/description
Empty file.
Empty file added tests/file_type_nix.nix
Empty file.
Empty file added tests/file_type_typst.typ
Empty file.
Empty file added tests/git-blame-ignore-revs
Empty file.

0 comments on commit 4b5d5c3

Please sign in to comment.