Skip to content

Commit

Permalink
Closes #26
Browse files Browse the repository at this point in the history
  • Loading branch information
jonaprieto committed Jan 4, 2023
1 parent 4c64f2f commit 00f648a
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"name": "juvix-mode",
"version": "0.1.14",
"version": "0.1.15",
"license": "GPL-3.0",
"description": "Juvix IDE support for VSCode",
"description": "Juvix Mode for VSCode",
"displayName": "Juvix",
"publisher": "Heliax",
"icon": "assets/tara.png",
Expand All @@ -29,7 +29,7 @@
"programming"
],
"galleryBanner": {
"theme": "light"
"theme": "dark"
},
"main": "./out/extension.js",
"scripts": {
Expand All @@ -40,7 +40,7 @@
"compile-tests": "tsc -p . --outDir out",
"watch-tests": "tsc -p . -w --outDir out",
"pretest": "npm run compile-tests && npm run compile && npm run lint",
"lint": "eslint src --ext ts",
"lint": "eslint src --ext ts --fix",
"test": "node ./out/test/runTest.js",
"upgrade-dependencies": "ncu -u",
"fix": "prettier --write . && eslint -c .eslintrc.js --ext ts ./src --fix"
Expand Down Expand Up @@ -360,7 +360,7 @@
"when": "editorLangId == Juvix && editorTextFocus"
},
{
"key": "shift+alt+l",
"key": "shift+alt+r",
"command": "juvix-mode.loadFileRepl",
"args": "Juvix: repl",
"when": "(editorLangId == Juvix || editorLangId == JuvixCore) && editorTextFocus"
Expand Down
4 changes: 3 additions & 1 deletion src/editsOnSave.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@

/*---------------------------------------------------------
* Copyright (C) Microsoft Corporation. All rights reserved.
*--------------------------------------------------------*/
import * as vscode from 'vscode';

export async function activate(context: vscode.ExtensionContext) {
Expand Down

0 comments on commit 00f648a

Please sign in to comment.