ctrl+shift+p filters: :st2 :st3 :win :osx :linux
Browse

NSIS Completions & Snippets

by idleberg ALL

Sublime Text completions and snippets for Nullsoft Scriptable Install System (NSIS)

Details

Installs

  • Total 2K
  • Win 2K
  • Mac 186
  • Linux 184
Jul 27 Jul 26 Jul 25 Jul 24 Jul 23 Jul 22 Jul 21 Jul 20 Jul 19 Jul 18 Jul 17 Jul 16 Jul 15 Jul 14 Jul 13 Jul 12 Jul 11 Jul 10 Jul 9 Jul 8 Jul 7 Jul 6 Jul 5 Jul 4 Jul 3 Jul 2 Jul 1 Jun 30 Jun 29 Jun 28 Jun 27 Jun 26 Jun 25 Jun 24 Jun 23 Jun 22 Jun 21 Jun 20 Jun 19 Jun 18 Jun 17 Jun 16 Jun 15 Jun 14 Jun 13
Windows 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Mac 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Linux 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0

Readme

Source
raw.​githubusercontent.​com

NSIS Completions & Snippets

The MIT License GitHub release Gitter

Sublime Text completions for Nullsoft Scriptable Install System (NSIS) supporting commands, macros and plugins that are bundled with NSIS v2.46 (or higher). Also included are snippets for scaffolding different types of empty scripts and to insert code blocks. You can extend these completions for third-party plug-ins using the add-ons pack.

Screenshot

Screenshot of NSIS file in Sublime Text

Features

  • all built-in NSIS commands, variables, defines and constants
  • Plugins:
    • AdvSplash
    • Banner
    • BgImage
    • Dialer
    • InstallOptions
    • LangDLL
    • Math
    • nsDialogs
    • nsExec
    • NSISdl
    • Splash
    • StartMenu
    • System
    • UserInfo
    • VPatch
  • Headers:
    • FileFunc
    • LogicLib
    • Memento
    • Modern UI
    • MultiUser
    • Sections
    • StrFunc
    • WinMessages
    • WinVer
    • WordFunc
    • x64
  • Includes, Graphics, UIs
  • Scaffolding Snippets
  • Code Snippets

Installation

Package Control

  1. Make sure you already have Package Control installed
  2. Choose “Install Package” from the Command Palette (Super+Shift+p)
  3. Type “NSIS Completions & Snippets” and press Enter

With auto_upgrade enabled, Package Control will keep all installed packages up-to-date!

Windows Installer

This package is part of sublime-nsis-ide, a collection of packages that turn Sublime Text into a powerful editor for NSIS developers.

Using Git

  1. Change to your Sublime Text Packages directory
  2. Clone repository git clone https://github.com/idleberg/sublime-nsis.git 'NSIS Completions & Snippets'

Manual installation

  1. Download the latest ZIP file
  2. Unzip the archive to your Sublime Text Packages directory

Usage

Auto-completion

When not specifying a flag alongside a command, completion will display all available flags, with the first flag always being the default.

Scaffolding snippets

Scaffolding snippets start with the prefix scaffold followed by the type of script you'd like to build:

  • Basic Script
  • InstallOptions Script
  • MUI2 Script
  • nsDialogs Script
  • nsDialogs MUI2 Script
  • NSIS Language File
  • Translate MUI2 (English, French, or Spanish)
  • Library

Several of the above snippets can set the number of sections in a script or add an init function.

Example:

With Sublime Text's fuzzy search in mind, you could for instance type scaffBasic to trigger the scaffold:Basic Script snippet and create the following script:

; Settings ---------------------------------
Name "installer_name"
OutFile "installer_name.exe"
RequestExecutionLevel user
InstallDir "$PROGRAMFILES\installer_name"

; Pages ------------------------------------
Page components
Page directory
Page instfiles

; Sections ---------------------------------
Section "section_name" section_index

    # your code here

SectionEnd

; Functions --------------------------------

Use Tab to jump to the next relevant bit of code you might want to change, Shift-Tab to jump back.

Code snippets

Code snippets start with the prefix do followed by the code block you'd like to insert to your script:

  • help dialog
  • illegal file characters define
  • language dialog
  • message boxes
  • UAC init macro
  • version information
  • version compare
  • IsWin, IsRunningX64, and IsServer checks

Examples:

To quickly add a message box with three buttons labeled “Yes”, “No” and “Cancel”, you could type something like doync to trigger thedo:MB_YESNOCANCEL snippet. This will insert the following line to the current position:

MessageBox MB_YESNOCANCEL "messagebox_text"

Use Tab to jump between the segments of the code.

To insert a code block of version information commands, you could type doinf to trigger the do:Version Information snippet. This will insert several lines of code:

VIProductVersion "0.0.0.0"
VIFileVersion    "0.0.0.0"
VIAddVersionKey  "FileDescription"  "description"
VIAddVersionKey  "FileVersion"      "0.0.0.0"
VIAddVersionKey  "ProductName"      "product_name"
VIAddVersionKey  "ProductVersion"   "0.0.0.0"
VIAddVersionKey  "LegalCopyright"   "copyright"
VIAddVersionKey  "OriginalFilename" "file_name.exe"
VIAddVersionKey  "Comments"         "comment"
VIAddVersionKey  "LegalTrademarks"  "trademark"
VIAddVersionKey  "CompanyName"      "company_name"
VIAddVersionKey  "InternalName"     "internal_name"
VIAddVersionKey  "PrivateBuild"     "private_build"
VIAddVersionKey  "SpecialBuild"     "special_build"

Again, you can use Tab to jump back and forth.

License

This work is licensed under the The MIT License.