Browse Source

Update extension documentation for automagic downloading

Signed-off-by: Sean Young <sean@mess.org>
Sean Young 4 years ago
parent
commit
9b6997be1d
3 changed files with 4 additions and 4 deletions
  1. BIN
      docs/extension-config.png
  2. 3 3
      docs/extension.rst
  3. 1 1
      vscode/package.json

BIN
docs/extension-config.png


+ 3 - 3
docs/extension.rst

@@ -24,9 +24,9 @@ Using the extension
 
 The extension can be found on the `Visual Studio Marketplace <https://marketplace.visualstudio.com/items?itemName=solang.solang>`_.
 
-First, install the extension and the Solang compiler binary. The extension needs
-to know where to find the Solang binary to start the language server, and also
-it needs to know what target you wish to compile your solidity code for.
+On first start, the extension will ask to download the Solang binary. Once this is done, it should just automatically work.
+However, you should set the blockchain target in the extension settings. The Solidity language differs in subtle ways depending on which target you are
+building for. Different blockchains offer different builtins, for example. See the :ref:`language documentation <language>`.
 
 .. image:: extension-config.png
 

+ 1 - 1
vscode/package.json

@@ -36,7 +36,7 @@
 				"solang.updates.askBeforeDownload": {
 					"type": "boolean",
 					"default": true,
-					"description": "Whether to ask for permission before downloading any files from the Internet,"
+					"description": "Whether to ask for permission before downloading any files from the Internet"
 				}
 			}
 		},