Skip to content

Commit

Permalink
feat: update version: 0.1.0 cancel highlight when inputbox show & add…
Browse files Browse the repository at this point in the history
… / at the end of the path
  • Loading branch information
tsl-chenjianfeng committed Mar 14, 2021
1 parent c58c33d commit ad8a02d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ function openModal(
value,
prompt,
ignoreFocusOut,
/* valueSelection: [-1, -1] */
valueSelection: [-1, -1]
})
.then(createPath => {
let basePath = createPath
Expand All @@ -26,7 +26,7 @@ function openModal(

function init(uri){
uri = uri || vscode.workspace.workspaceFolders[0].uri.fsPath
uri = uri.replace(/\\/g, '/')
uri = uri.replace(/\\/g, '/') + '/'
openModal(uri)
}

Expand Down

0 comments on commit ad8a02d

Please sign in to comment.