Skip to content

Commit

Permalink
fix: fix auto complete for latest cosmwasm-schema version (#87)
Browse files Browse the repository at this point in the history
  • Loading branch information
ulbqb authored Dec 28, 2023
1 parent 1cf33df commit 1217e20
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ All notable changes to the Cosmy Wasmy extension will be documented in this file
### Fixed

- Fix default chain name
- Fix auto complete for latest cosmwasm version

### Security

Expand Down
20 changes: 20 additions & 0 deletions src/commands/terminal.ts
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,26 @@ export class TerminalCmds {
"*.json"
],
url: "/schema/migrate_msg.json"
}, {
fileMatch: [
"*.json"
],
url: "/schema/raw/execute.json"
}, {
fileMatch: [
"*.json"
],
url: "/schema/raw/query.json"
}, {
fileMatch: [
"*.json"
],
url: "/schema/raw/instantiate.json"
}, {
fileMatch: [
"*.json"
],
url: "/schema/raw/migrate.json"
}];
Workspace.SetWorkspaceSchemaAutoComplete(schema);
});
Expand Down

0 comments on commit 1217e20

Please sign in to comment.