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

Update lldb pretty printer script path #59

Merged
merged 1 commit into from
Dec 20, 2022
Merged
Show file tree
Hide file tree
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
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Changelog

## v0.13.2
- [Update lldb pretty printer script path](https://github.com/ElrondNetwork/elrond-ide-vscode/pull/59)

## v0.13.1
- [Fix the settings update when modifying the lldb global config](https://github.com/ElrondNetwork/elrond-ide-vscode/pull/56)

Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "vscode-elrond-ide",
"displayName": "Elrond IDE",
"description": "Elrond IDE for developing Smart Contracts",
"version": "0.13.1",
"version": "0.13.2",
"publisher": "Elrond",
"repository": {
"type": "git",
Expand Down
4 changes: 2 additions & 2 deletions src/sdk.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export function getPath() {
}

function getPrettyPrinterPath() {
return path.join(getPath(), "elrond_wasm_lldb_pretty_printers.py");
return path.join(getPath(), "mx_sc_lldb_pretty_printers.py");
}

export async function reinstall() {
Expand Down Expand Up @@ -310,7 +310,7 @@ export async function installRustDebuggerPrettyPrinterScript() {
let inputPath = await showInputBoxWithDefault({
title: "File path",
prompt: "File path to the pretty printer script.",
defaultInput: "tools/rust-debugger/pretty-printers/elrond_wasm_lldb_pretty_printers.py",
defaultInput: "tools/rust-debugger/pretty-printers/mx_sc_lldb_pretty_printers.py",
ignoreFocusOut: true,
});

Expand Down