You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
1.1 KiB
42 lines
1.1 KiB
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
const os = require("os");
|
|
const path = require("path");
|
|
exports.default = [
|
|
{
|
|
name: 'code',
|
|
process: ['Code.exe'],
|
|
location: [
|
|
path.join(os.homedir(), 'AppData', 'Local', 'Programs', 'Microsoft VS Code'),
|
|
],
|
|
commands: [
|
|
'code',
|
|
path.join(os.homedir(), 'AppData', 'Local', 'Programs', 'Microsoft VS Code', 'bin', 'code.cmd'),
|
|
],
|
|
opts: [],
|
|
},
|
|
{
|
|
name: 'subl',
|
|
process: ['sublime_text.exe'],
|
|
location: [
|
|
path.join(os.homedir(), '..', 'Program Files', 'Sublime Text 3'),
|
|
path.join(os.homedir(), '..', 'Program Files', 'Sublime Text'),
|
|
],
|
|
commands: [
|
|
'subl',
|
|
path.join(os.homedir(), '..', 'Program Files', 'Sublime Text 3', 'subl.exe'),
|
|
],
|
|
opts: [],
|
|
},
|
|
{
|
|
name: 'webstorm',
|
|
process: ['webstorm.exe', 'webstorm64.exe'],
|
|
location: [],
|
|
commands: [
|
|
'webstorm',
|
|
'wstorm',
|
|
],
|
|
opts: [],
|
|
},
|
|
];
|