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 182
Apr 26 Apr 25 Apr 24 Apr 23 Apr 22 Apr 21 Apr 20 Apr 19 Apr 18 Apr 17 Apr 16 Apr 15 Apr 14 Apr 13 Apr 12 Apr 11 Apr 10 Apr 9 Apr 8 Apr 7 Apr 6 Apr 5 Apr 4 Apr 3 Apr 2 Apr 1 Mar 31 Mar 30 Mar 29 Mar 28 Mar 27 Mar 26 Mar 25 Mar 24 Mar 23 Mar 22 Mar 21 Mar 20 Mar 19 Mar 18 Mar 17 Mar 16 Mar 15 Mar 14 Mar 13
Windows 0 0 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 0 0 0 2 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 2 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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0

Readme

Source
raw.​githubusercontent.​com

NSIS Completions & Snippets

The MIT License GitHub release Travis 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.