@@ -58,12 +58,12 @@ vim.cmd([[autocmd BufRead,BufNewFile *.ar setfiletype argon]])
5858To open an example Argon workspace, run the following from the root directory of your Argon clone:
5959
6060```
61- vim core/compiler/examples/argon_workspace /lib.ar
61+ vim pdks/sky130 /lib.ar
6262```
6363
6464Start the GUI by running ` :Argon gui ` .
6565
66- From within the GUI, type ` :openCell test( ) ` to open the ` test ` cell. You should now be able to edit layouts
66+ From within the GUI, type ` :openCell inv(1200., 2000., 4 ) ` to open the ` inv ` cell. You should now be able to edit layouts
6767in both Neovim and the GUI.
6868
6969### VS Code
@@ -92,7 +92,7 @@ cd ../..
9292To open an example Argon workspace, run the following from the root directory of your Argon clone:
9393
9494``` bash
95- code --extensionDevelopmentPath=$( pwd) /plugins/vscode core/compiler/examples/argon_workspace
95+ code --extensionDevelopmentPath=$( pwd) /plugins/vscode pdks/sky130/lib.ar
9696```
9797
9898We recommend defining an alias in your shell configuration to simplify future commands:
@@ -104,7 +104,7 @@ alias codear="code --extensionDevelopmentPath=<absolute_path_to_argon_repo>/plug
104104With this alias defined, you can now run:
105105
106106``` bash
107- codear core/compiler/examples/argon_workspace
107+ codear pdks/sky130
108108```
109109
110110Open the ` lib.ar ` file within the workspace. You can then start the GUI by running ` Command Palette > Argon: Start GUI ` .
@@ -149,10 +149,8 @@ Hit `d` to use the Dimension tool and click on the top edge of each rectangle. C
149149The dimension should now be highlighted yellow, indicating that you are editing that dimension. Type ` 5. ` and hit enter to set the value
150150of the dimension (the decimal point is important, since just ` 5 ` is considered an integer literal rather than a float).
151151
152- > [ !WARNING]
153- > Double check that there are no errors in your code editor, or the GUI will not be able to
154- > display the updated cell. If you make a mistake,
155- > you can undo and redo changes from the GUI using ` u ` and ` Ctrl + r ` ,
152+ > [ !TIP]
153+ > If you make a mistake, you can undo and redo changes from the GUI using ` u ` and ` Ctrl + r ` ,
156154> respectively, or manually modify the code in the text editor if needed.
157155
158156Repeat for the other 3 sides of the rectangle.
0 commit comments