Skip to content

release: v1.4.1 #21

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jul 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 14 additions & 7 deletions package/Tact.sublime-completions
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@
{
"trigger": "interface\t@interface(\"...\")",
"contents": "interface(\"$1\")",
"kind": ["function", "a", "Attribute"]
"kind": ["function", "a", "Attribute"],
"details": "<a href=\"https://docs.tact-lang.org/book/contracts#interfaces\">Tact Docs</a>"
},

// Literals, Base trait and constants
Expand Down Expand Up @@ -304,17 +305,20 @@
{
"trigger": "bytes32\tfor Slices",
"contents": "bytes32",
"kind": "type"
"kind": "type",
"details": "<a href=\"https://docs.tact-lang.org/book/cells#serialization-bytes32\">Tact Docs</a>"
},
{
"trigger": "bytes64\tfor Slices",
"contents": "bytes64",
"kind": "type"
"kind": "type",
"details": "<a href=\"https://docs.tact-lang.org/book/cells#serialization-bytes64\">Tact Docs</a>"
},
{
"trigger": "remaining\tfor Cells, Builders and Slices",
"contents": "remaining",
"kind": "type"
"kind": "type",
"details": "<a href=\"https://docs.tact-lang.org/book/cells#serialization-remaining\">Tact Docs</a>"
},

// Keywords
Expand Down Expand Up @@ -446,17 +450,20 @@
{
"trigger": "abstract\tconstant or function to be defined",
"contents": "abstract $0",
"kind": "keyword"
"kind": "keyword",
"details": "<a href=\"https://docs.tact-lang.org/book/contracts#traits\">Tact Docs</a>"
},
{
"trigger": "virtual\tconstant or function allowing overrides",
"contents": "virtual $0",
"kind": "keyword"
"kind": "keyword",
"details": "<a href=\"https://docs.tact-lang.org/book/contracts#traits\">Tact Docs</a>"
},
{
"trigger": "override\tconstant or function to be overridden",
"contents": "override $0",
"kind": "keyword"
"kind": "keyword",
"details": "<a href=\"https://docs.tact-lang.org/book/contracts#traits\">Tact Docs</a>"
},
{
"trigger": "extends\textension function",
Expand Down
2 changes: 1 addition & 1 deletion package/Tact.tmLanguage
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@
<key>comment</key>
<string>FunC identifier</string>
<key>match</key>
<string>((?:[a-zA-Z_\'\?!&amp;]|::)(?:[a-zA-Z0-9_\'\?!&amp;]|::)*)</string>
<string>(.*?)</string>
<key>name</key>
<string>entity.name.function.func.tact</string>
</dict>
Expand Down
2 changes: 1 addition & 1 deletion package/Tact.tmLanguage.json
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@
"patterns": [
{
"comment": "FunC identifier",
"match": "((?:[a-zA-Z_\\'\\?!&]|::)(?:[a-zA-Z0-9_\\'\\?!&]|::)*)",
"match": "(.*?)",
"name": "entity.name.function.func.tact"
}
],
Expand Down
Loading