DXMate
Sublime Text 3 plugin to provide integration with the Salesforce DX CLI
Details
Installs
- Total 351
- Win 202
- Mac 121
- Linux 28
Feb 5 | Feb 4 | Feb 3 | Feb 2 | Feb 1 | Jan 31 | Jan 30 | Jan 29 | Jan 28 | Jan 27 | Jan 26 | Jan 25 | Jan 24 | Jan 23 | Jan 22 | Jan 21 | Jan 20 | Jan 19 | Jan 18 | Jan 17 | Jan 16 | Jan 15 | Jan 14 | Jan 13 | Jan 12 | Jan 11 | Jan 10 | Jan 9 | Jan 8 | Jan 7 | Jan 6 | Jan 5 | Jan 4 | Jan 3 | Jan 2 | Jan 1 | Dec 31 | Dec 30 | Dec 29 | Dec 28 | Dec 27 | Dec 26 | Dec 25 | Dec 24 | Dec 23 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 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 | 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 | 1 | 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
dxmate
Sublime Text 3 plugin to provide integration with the Salesforce DX CLI
Instructions
- Install the DX CLI
- Run
Package Control: Install Package
from the command palette in Sublime and search for 'dxmate' - In the command pallette run
Package Control: Satisfy Dependencies
Features
Supports most useful CLI commands including: * Create a project * Authorize dev hub * Create\open scratch orgs * Push\Pull source * Create Apex classes * Create Lightning Apps, Components, Events, Interfaces and Tests * Run tests for an org or specific class * Run SOQL query
This plugin also supports: * Code completion * Diagnostics
Language services (e.g., code completion and diagnostics) are provided by the Apex Language Server
Settings
debug
: true or false to enable/disable printing debug statements to the sublime consolejava_home
: location of your java binary if it is not in your PATH
Getting Started
The plugin adds a new menu item (DXMate), context menu items, and command pallette items. Many of these are only enabled if you have an sfdx project currently opened.
If you don't have an sfdx proejct created, you can use DXMate > Project > Create Project to create one. If you do have one created, use Project > Add Folder to Project to add it to a project.
After that you can work with the rest of the commands (e.g., authorizing a dev hub and then creating a scratch org).
To Do
- Additional settings (e.g., disable language services)
- Better handling of window opening (currently only starts language server if dx project is loaded when sublime is opened)
- Add goto symbol definition from latest language server update
- Add support for additional sfdx cli commands
Compatibility
This should be compatible with windows, osx and linux with ST3.
It's been tested on windows 10 and ubuntu 16.
Credits
Most utility functions are based on or copied from MavensMate. The syntax files for Apex are also from the MavensMate project.
The LSP client code is adapted from the Sublime LSP package