File tree 3 files changed +4
-2
lines changed 3 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,8 @@ All notable changes to the *Haskell Runner 2* will be documented in this file.
4
4
5
5
## [ Unreleased]
6
6
7
+ ## [ 0.2.1]
8
+
7
9
- fix potential path issue in Windows
8
10
9
11
## [ 0.2.0]
Original file line number Diff line number Diff line change 3
3
"displayName" : " Haskell Runner 2" ,
4
4
"description" : " Shortcut for GHCi and Stack" ,
5
5
"publisher" : " Meowcolm024" ,
6
- "version" : " 0.2.0 " ,
6
+ "version" : " 0.2.1 " ,
7
7
"license" : " BSD3" ,
8
8
"icon" : " images/hr2.png" ,
9
9
"engines" : {
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ export async function activate(context: vscode.ExtensionContext) {
28
28
// currently at GHCi
29
29
if ( terminal . map ( t => t . name ) . contains ( "GHCi" ) ) {
30
30
filename
31
- . map ( f => f . split ( "\\" ) . join ( "\\\\" ) ) // windows path may caontain backslash
31
+ . map ( f => f . split ( "\\" ) . join ( "\\\\" ) ) // windows path may contain backslash
32
32
. map ( f => terminal . unwrap ( ) . sendText ( stackproj ? ":r" : ( ":l " + f ) ) ) ;
33
33
} else {
34
34
let term = vscode . window . createTerminal ( "GHCi" ) ;
You can’t perform that action at this time.
0 commit comments