Skip to content

Commit

Permalink
[move-ide] Added support for use-s auto-completion (#18924)
Browse files Browse the repository at this point in the history
## Description 

This PR add support for `::` auto-completion for `use` statements. It is
the last step towards finishing current level of `::` support started in
#18778

## Test plan 

All new and existing test must pass
  • Loading branch information
awelc authored Aug 8, 2024
1 parent 3e6540f commit 3f4cab6
Show file tree
Hide file tree
Showing 7 changed files with 992 additions and 78 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,7 @@ Move source file (a file with a `.move` file extension) and:
`>`, `)`, or `}` -- will be highlighted.
- As you type, the editor will offer completion suggestions, in particular:
- struct field name and method name suggestions following `.` being typed
- suggestions following `::` being typed
- code snippets to complete `init` function and object type definitions
- If the opened Move source file is located within a buildable project (a `Move.toml` file can be
found in one of its parent directories), the following advanced features will also be available:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"publisher": "mysten",
"icon": "images/move.png",
"license": "Apache-2.0",
"version": "1.0.10",
"version": "1.0.11",
"preview": true,
"repository": {
"url": "https://github.com/MystenLabs/sui.git",
Expand Down
Loading

0 comments on commit 3f4cab6

Please sign in to comment.