tact-lang / tact-vscode

Tact VS Code plugin
Apache License 2.0
14 stars 7 forks source link
tact ton vscode-extension

Tact language support for Visual Studio code

Screenshot auto compilation Tact vscode extension

Tact is the language used in TON blockchain project to create smart contracts. This extension provides:

Instructions

Code completion

Autocomplete is generally supported across for smart contracts, structs, functions, variables, inheritance. Autocomplete should happen automatically or press Ctrl+Space or Command+Space.

Screenshot autocomplete Tact vscode extension

Error highlighting

Error highlighting can be enabled or disabled using user settings. Also a default delay is implemented for all the validations compilation as Tact compilation can be slow when you have many dependencies. This part uses Tact compiler to show errors and works by save event.

"tact.enabledAsYouTypeCompilationErrorCheck": true,
"tact.validationDelay": 1500

Additional information by hover event

If hover on a variable with some Tact functions that pop up with the information about property will be shown.

Screenshot hover event Tact vscode extension

Formatting

To apply the formatting you can use the right-click context menu. Screenshot formatting Tact vscode extension

Refactor

To rename some string in the Tact code use F2, to use the code actions, open the right-click context menu and select "refactor". Screenshot refactor Tact vscode extension

Contributing / Issues / Requests

For ideas, issues, additions, modifications please raise an issue or a pull request at https://github.com/tact-lang/tact-vscode

Requested features