The editor has some additional commands for different proportions, here is a list of the available commands.
| COMMAND | FUNCTION |
|---|---|
:InitialPrettierrc | The command creates a .pretierrc file in your project's root path. |
:InitialEditorconfig | The command creates a .editorconfig file in your project root path |
:InitialDockerfile | The command creates a dockerfile file in your project root path |
:InitialDockercompose | The command creates a docker-compose.yaml file in your project root path |
:InitialStructureSass <path> | The command creates a default file structure for sass, the command receives as a parameter the path where the folders are to be created |
:InitialStructureNode <path> | The command creates a default file structure for node project, the command receives as a parameter the path where the folders are to be created |
:RunPython | The command executes the python file at the side of the editor. |
:RunJavascript | The command executes the javascript file at the side of the editor |
:RunTypescript | The command compiles the typescript file, and then executes the resulting javascript file next to the editor. |
:RunScss | The command compiles the current scss file |
:RunGo | The command compiles the open go file and then executes the resulting binary at the side of the editor. |
:RunCPP | The command compiles the open c++ file and then executes the resulting binary at the side of the editor. |
:RunC | The command compiles the open c file and then executes the resulting binary at the side of the editor. |
:OpenHTML | This command opens the current HTML file in your default browser. |