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.
54 lines
1.0 KiB
54 lines
1.0 KiB
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
const path = require("path");
|
|
const userHome = require("user-home");
|
|
exports.default = [
|
|
{
|
|
name: 'code',
|
|
process: ['code'],
|
|
location: [
|
|
path.join(userHome, '.vscode'),
|
|
],
|
|
commands: [
|
|
'code',
|
|
],
|
|
opts: [],
|
|
},
|
|
{
|
|
name: 'code-insiders',
|
|
process: ['code-insiders'],
|
|
location: [
|
|
path.join(userHome, '.vscode'),
|
|
],
|
|
commands: [
|
|
'code-insiders',
|
|
],
|
|
opts: [],
|
|
},
|
|
{
|
|
name: 'atom',
|
|
process: ['atom'],
|
|
location: [],
|
|
commands: [
|
|
'atom',
|
|
],
|
|
},
|
|
{
|
|
name: 'subl',
|
|
process: ['sublime_text'],
|
|
location: [],
|
|
commands: [
|
|
'subl',
|
|
],
|
|
},
|
|
{
|
|
name: 'webstorm',
|
|
process: ['webstorm', 'webstorm.sh'],
|
|
location: [],
|
|
commands: [
|
|
'wstorm',
|
|
'webstorm',
|
|
],
|
|
},
|
|
];
|