Skip to content
This repository was archived by the owner on May 4, 2024. It is now read-only.
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
6 changes: 5 additions & 1 deletion language/move-analyzer/editors/code/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,11 @@ The `move-analyzer` language server is a Rust program that is part of the
2. Invoke `cargo install --git https://github.com/move-language/move move-analyzer` to install the
`move-analyzer` language server in your Cargo binary directory. On macOS and Linux, this is
usually `~/.cargo/bin`. You'll want to make sure this location is in your `PATH` environment
variable.
variable. If you plan to use the language server with Move language flavors different from core Move,
you should specify an additional option to `cargo install` command as different Move flavors
may enforce different max length of the Move address type: `--features "address20"` option for Move
flavors requiring 20-byte long addresses (e.g., Sui Move) and `--features "address32"` option
for Move flavors requiring 32-byte long addresses (e.g., Aptos Move).

To confirm that you've installed the language server program successfully, execute
`move-analyzer --version` on the command line. You should see the output `move-analyzer 1.0.0`.
Expand Down
2 changes: 1 addition & 1 deletion language/move-analyzer/editors/code/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"publisher": "move",
"icon": "images/move.png",
"license": "Apache-2.0",
"version": "0.0.8",
"version": "0.0.9",
"preview": true,
"homepage": "https://github.com/move-language/move",
"repository": {
Expand Down