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

Wsl​Build

A Sublime Text package to create build systems running in WSL2

Labels build system

Details

Installs

  • Total 369
  • Win 368
  • Mac 0
  • Linux 1
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 Mar 12 Mar 11 Mar 10 Mar 9 Mar 8 Mar 7 Mar 6 Mar 5 Mar 4 Mar 3 Mar 2 Mar 1 Feb 29 Feb 28 Feb 27 Feb 26 Feb 25 Feb 24 Feb 23 Feb 22 Feb 21 Feb 20 Feb 19 Feb 18 Feb 17 Feb 16 Feb 15 Feb 14 Feb 13
Windows 0 1 1 0 0 1 3 0 0 0 1 0 0 3 1 1 1 3 0 2 1 2 0 2 2 0 0 3 0 0 0 1 0 0 1 0 2 2 2 0 1 2 0 1 1
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 0 0 0 0 0

Readme

Source
raw.​githubusercontent.​com

WSL Build

A Sublime Text package to create build systems running in WSL2.

It adds a wsl_exec target that:

  • executes Linux commands within Windows Subsystem for Linux 2
  • provides Linux paths in variables such as $unix_file
  • properly sets environment variables for Linux commands

Execution and printing output is performed by Sublime Text's default exec build target.

Installation

Package Control

The easiest way to install is using Package Control. It's listed as WslBuild.

  1. Open Command Palette using ctrl+shift+P or menu item Tools → Command Palette...
  2. Choose Package Control: Install Package
  3. Find WslBuild and hit Enter

Manual Install

  1. Download appropriate WslBuild.sublime-package for your Sublime Text build.
  2. Copy it into Installed Packages directory

To find Installed Packages

  1. call Menu > Preferences > Browse Packages..
  2. Navigate to parent folder

Clone repository

You can clone this repository into your Sublime Text/Packages

Note

To find Packages folder call Menu > Preferences > Browse Packages…

Mac OS
cd ~/Library/Application\ Support/Sublime\ Text/Packages/
git clone https://github.com/SublimeText/WslBuild.git
Linux
cd ~/.config/sublime-text/Packages
git clone https://github.com/SublimeText/WslBuild.git
Windows
cd "%APPDATA%\Sublime Text\Packages"
git clone https://github.com/SublimeText/WslBuild.git

Usage

Defining a Build

Set "target": "wsl_exec" and "cancel": {"kill": true} to be able to cancel a command.

Note

For more information about defining Sublime Text builds see the official documentation

Required Keys

wsl_cmd

Set "wsl_cmd" instead of "cmd". The command array will be executed through WSL.

Can be a string or list of strings.

Note

Build variables such as $file have a $unix_file counter part with unix style paths.

Optional Keys

wsl_working_dir

Set "wsl_working_dir" instead of "working_dir".

Note

Build variables such as $file have a $unix_file counter part with unix style paths.

wsl_env

Set "wsl_env" instead of "env" to set environment variables that are available to the Linux command.

Note

Build variables such as $file have a $unix_file counter part with unix style paths.

Environment variables can be suffixed by conversion flags to specify how their values are treated by WSL.

"MY_PATH/p": "C:\\Path\\to\\File"

is converted to:

  1. MY_PATH=/mnt/c/Path/to/File when running unix commands
  2. MY_PATH=C:\\Path\\to\\File when running windows commands
flag description
/p This flag indicates that a path should be translated between WSL paths and Win32 paths. Notice in the example below how we set the var in WSL, add it to WSLENV with the /p flag, and then read the variable from cmd.exe and the path translates accordingly.
/l This flag indicates the value is a list of paths. In WSL, it is a colon-delimited list. In Win32, it is a semicolon-delimited list.
/u This flag indicates the value should only be included when invoking WSL from Win32.
/w Notice how it does not convert the path automatically—we need to specify the /p flag to do this.

For more information about it, visit: https://devblogs.microsoft.com/commandline/share-environment-vars-between-wsl-and-windows

Example Build System to run file in WSL:
{
    "target": "wsl_exec",
    "cancel": {"kill": true},
    "wsl_cmd": "./$unix_file",
    "wsl_working_dir": "$unix_file_path",
}
Example Builds for a Rails app in WSL:
"build_systems": [
    {
        "name": "Run Current Spec",
        "target": "wsl_exec",
        "cancel": {"kill": true},
        "wsl_cmd": "bundle exec rake spec"
        "wsl_env": {
            "SPEC/p": "$file"
        },
        "wsl_working_dir": "$unix_folder"
    },
    {
        "name": "Run All Specs",
        "target": "wsl_exec",
        "cancel": {"kill": true},
        "wsl_cmd": [
            "bundle", "exec", "rake", "spec"
        ],
        "wsl_working_dir": "$unix_folder",
    },
    {
        "name": "Run Database Migrations",
        "target": "wsl_exec",
        "cancel": {"kill": true},
        "wsl_cmd": [
            "bundle", "exec", "rake", "db:migrate"
        ],
        "wsl_working_dir": "$unix_folder"
    }
]

Variables

Default Variables

All default variables are provided in unconverted form in case a windows command is being executed within WSL2.

variable description
$packages The path to the Packages/ folder.
$platform The platform Sublime Text is running on: “windows”, “osx” or “linux”.
$file The full path, including folder, to the file in the active view.
$file_path The path to the folder that contains the file in the active view.
$file_name The file name (sans folder path) of the file in the active view.
$file_base_name The file name, excluding the extension, of the file in the active view.
$file_extension The extension of the file name of the file in the active view.
$folder The full path to the first folder open in the side bar.
$project The full path to the current project file.
$project_path The path to the folder containing the current project file.
$project_name The file name (sans folder path) of the current project file.
$project_base_name The file name, excluding the extension, of the current project file.
$project_extension The extension of the current project file.

see: https://www.sublimetext.com/docs/build_systems.html#variables

Unix Variables

Converted path variables are provided for unix commands being executed within WSL.

variable (unix style) original variable (windows style)
$unix_file $file
$unix_file_path $file_path
$unix_folder $folder
$unix_packages $packages
$unix_project $project
$unix_project_path $project_path

Acknowledgments

Inspired by