Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Extract handling of Windows paths #255

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 10 additions & 20 deletions src/extension.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@ const fs = require('fs');
const vscode = require('vscode');
const diff = require('semver/functions/diff');

const isWin = /^win/.test(process.platform);
function winfix(path) {
return isWin ? path.replace("/", "\\", path) : path;
}

/**
* @param {vscode.ExtensionContext} context
*/
Expand All @@ -23,21 +28,10 @@ function activate(context) {

let disposable = vscode.commands.registerCommand('synthwave84.enableNeon', function () {

const isWin = /^win/.test(process.platform);
const appDir = path.dirname(require.main.filename);
const base = appDir + (isWin ? "\\vs\\code" : "/vs/code");

const htmlFile =
base +
(isWin
? "\\electron-browser\\workbench\\workbench.html"
: "/electron-browser/workbench/workbench.html");

const templateFile =
base +
(isWin
? "\\electron-browser\\workbench\\neondreams.js"
: "/electron-browser/workbench/neondreams.js");
const base = appDir + winfix("/vs/code");
const htmlFile = base + winfix("/electron-browser/workbench/workbench.html");
const templateFile = base + winfix("/electron-browser/workbench/neondreams.js");

try {

Expand Down Expand Up @@ -105,12 +99,8 @@ function deactivate() {
function uninstall() {
var isWin = /^win/.test(process.platform);
var appDir = path.dirname(require.main.filename);
var base = appDir + (isWin ? "\\vs\\code" : "/vs/code");
var htmlFile =
base +
(isWin
? "\\electron-browser\\workbench\\workbench.html"
: "/electron-browser/workbench/workbench.html");
var base = appDir + winfix("/vs/code");
var htmlFile = base + winfix("/electron-browser/workbench/workbench.html");

// modify workbench html
const html = fs.readFileSync(htmlFile, "utf-8");
Expand Down