Skip to content

Commit 18592e5

Browse files
1. nested modules parsing in project structure
2. treeview in import project wizard
1 parent f9ddd34 commit 18592e5

File tree

11 files changed

+11270
-216
lines changed

11 files changed

+11270
-216
lines changed

README.md

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,14 @@ Installation
1818
cd bazel-ls-vscode
1919
npm install
2020
```
21-
4. Package the extension:
21+
4. Compile source code:
22+
```bash
23+
npm run compile
24+
```
25+
5. Package the extension:
2226
```bash
2327
vsce package
2428
```
25-
5. Open the _Extensions_ tab in VS Code
26-
6. Select _Install from VSIX..._ and choose file built in the fourth step
27-
7. Once installed, restart VS Code
29+
6. Open the _Extensions_ tab in VS Code
30+
7. Select _Install from VSIX..._ and choose file built in the fourth step
31+
8. Once installed, restart VS Code

css/editor.css

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
ul {
2+
list-style-type: none;
3+
padding-inline-start: 2em;
4+
}
5+
6+
.collapsed-list {
7+
display: none;
8+
}
9+
.single::before {
10+
user-select: none;
11+
content: "\25B6";
12+
color: transparent;
13+
display: inline-block;
14+
margin-right: 6px;
15+
}
16+
17+
.collapsed::before {
18+
cursor: pointer;
19+
-webkit-user-select: none;
20+
/* Safari 3.1+ */
21+
-moz-user-select: none;
22+
/* Firefox 2+ */
23+
-ms-user-select: none;
24+
/* IE 10+ */
25+
user-select: none;
26+
content: "\25B6";
27+
display: inline-block;
28+
margin-right: 6px;
29+
}
30+
31+
.expanded::before {
32+
cursor: pointer;
33+
content: "\25B6";
34+
-webkit-user-select: none;
35+
/* Safari 3.1+ */
36+
-moz-user-select: none;
37+
/* Firefox 2+ */
38+
-ms-user-select: none;
39+
/* IE 10+ */
40+
user-select: none;
41+
display: inline-block;
42+
margin-right: 6px;
43+
-ms-transform: rotate(90deg);
44+
/* IE 9 */
45+
-webkit-transform: rotate(90deg);
46+
/* Safari */
47+
transform: rotate(90deg);
48+
}

html/editor.html

Lines changed: 0 additions & 144 deletions
This file was deleted.

0 commit comments

Comments
 (0)