You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/tools/code-extension.mdx
+9-9Lines changed: 9 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -27,7 +27,7 @@ You can create a new LF package either manually by creating an LF file or by usi
27
27
│ ├── src/
28
28
│ │ └── Foo.lf
29
29
│ ├── src-gen/
30
-
│ │ ├── Foo/
30
+
│ │ └── Foo/
31
31
...
32
32
```
33
33
@@ -96,11 +96,11 @@ The **Lingua Franca Package Explorer** can be accessed by clicking on the **LF i
96
96
└── └── Source Files
97
97
```
98
98
99
-
-[**Installed Packages**](#installed-packages): Lists libraries installed via the Lingo Package Manager, located in the `build/lfc_include` directory (if any).
99
+
-[**Installed Packages**](#installed-packages): Lists libraries installed via the Lingo Package Manager, located in the `./build/lfc_include` directory (if any).
100
100
101
-
-[**Local Libraries**](#local-libraries): Displays locally defined libraries (e.g., reusable reactors), located in the `src/lib` directory.
101
+
-[**Local Libraries**](#local-libraries): Displays locally defined libraries (e.g., reusable reactors), located in the `./src/lib` directory.
102
102
103
-
-[**Source Files**](#source-files): Contains the LF source files created by the developer, located in the `src` directory.
103
+
-[**Source Files**](#source-files): Contains the LF source files created by the developer, located in the `./src/` directory.
104
104
105
105
The **Source Files** section is always present as it reflects the main LF files in the package. However, the **Installed Packages** and **Local Libraries** sections appear only if the respective directories and files exist in the workspace.
106
106
@@ -114,7 +114,7 @@ To install libraries:
114
114
1. Configure the `Lingo.toml` file with the desired libraries.
115
115
2. Run <kbd>lingo build</kbd> in the terminal from the current directory to download the specified dependencies.
116
116
117
-
Once the libraries are installed, they will appear in the `{package_name}/build/lfc_include/` directory. The **Installed Packages** section will then be structured as follows:
117
+
Once the libraries are installed, they will appear in the `./build/lfc_include/` directory. The **Installed Packages** section will then be structured as follows:
118
118
119
119
```
120
120
├── LF Package
@@ -160,7 +160,7 @@ The **Import Selected Reactor** option is available only if an LF program is ope
160
160
161
161
#### Local Libraries
162
162
163
-
The **Local Libraries** section lists LF programs created by the developer, located in the `{package_name}/src/lib/` directory. These programs serve as local libraries, containing reusable reactors. The directory structure follows this format:
163
+
The **Local Libraries** section lists LF programs created by the developer, located in the `./src/lib/` directory. These programs serve as local libraries, containing reusable reactors. The directory structure follows this format:
164
164
165
165
```
166
166
├── LF Package
@@ -201,15 +201,15 @@ The **Import Selected Reactor** option is available only if an LF program is ope
201
201
202
202
#### Source Files
203
203
204
-
The **Source Files** section lists all LF programs in the `{package_name}/src/` directory. This section provides direct access to the main source files of the package. The hierarchy for this view is straightforward:
204
+
The **Source Files** section lists all LF programs in the `./src/` directory. This section provides direct access to the main source files of the package. The hierarchy for this view is straightforward:
0 commit comments