Skip to content

Commit 845bd7b

Browse files
committed
prepare 0.2.1
1 parent 5f56c51 commit 845bd7b

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ All notable changes to the *Haskell Runner 2* will be documented in this file.
44

55
## [Unreleased]
66

7+
## [0.2.1]
8+
79
- fix potential path issue in Windows
810

911
## [0.2.0]

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"displayName": "Haskell Runner 2",
44
"description": "Shortcut for GHCi and Stack",
55
"publisher": "Meowcolm024",
6-
"version": "0.2.0",
6+
"version": "0.2.1",
77
"license": "BSD3",
88
"icon": "images/hr2.png",
99
"engines": {

src/extension.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ export async function activate(context: vscode.ExtensionContext) {
2828
// currently at GHCi
2929
if (terminal.map(t => t.name).contains("GHCi")) {
3030
filename
31-
.map(f => f.split("\\").join("\\\\")) // windows path may caontain backslash
31+
.map(f => f.split("\\").join("\\\\")) // windows path may contain backslash
3232
.map(f => terminal.unwrap().sendText(stackproj ? ":r" : (":l " + f)));
3333
} else {
3434
let term = vscode.window.createTerminal("GHCi");

0 commit comments

Comments
 (0)