This is a fork version of idleberg/vscode-innosetup! Thanks @idleberg!
Language syntax, snippets and build system for Inno Setup
Screenshot of Inno Setup in Visual Studio Code with Hopscotch theme
Launch Quick Open, paste the following command, and press Enter
ext install chouzz.innosetup
With shell commands installed, you can use the following command to install the extension:
$ code --install-extension chouzz.innosetup
Download the packaged extension from the the release page and install it from the command-line:
$ code --install-extension path/to/innosetup-*.vsix
Alternatively, you can download the packaged extension from the Open VSX Registry or install it using the ovsx
command-line tool:
$ ovsx get chouzz.innosetup
Change to your Visual Studio Code extensions directory:
# Windows
$ cd %USERPROFILE%\.vscode\extensions
# Linux & macOS
$ cd ~/.vscode/extensions/
Clone repository as innosetup
:
$ git clone https://github.com/chouzz/vscode-innosetup innosetup
Before you can build, make sure ISCC
is in your PATH environmental variable. Alternatively, you can specify the path to ISCC
in your user settings.
Example:
"innosetup.pathToIscc": "full\\path\\to\\ISCC.exe"
Note: If you're on non-Windows, you could specify the path to this bash script, which runs ISCC
on Wine.
To trigger a build, select InnoSetup: Save & Compile” from the command-palette or use the default keyboard shortcut Shift+Alt+B.
This work is licensed under The MIT License