Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Enaium committed Jan 3, 2025
1 parent 71a2bd9 commit c360996
Showing 1 changed file with 16 additions and 5 deletions.
21 changes: 16 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
- Folding
- Structure view
- Format export and import
- Hover for export, import, macro, prop, alias group etc.

## Implemented LSP features

Expand Down Expand Up @@ -52,6 +53,16 @@

![formatting export and import](https://s2.loli.net/2024/12/19/45Ja3uSgzhyCjYp.gif)

![export package hover](https://s2.loli.net/2025/01/03/A57apRUf8VyvrQl.png)

![import hover](https://s2.loli.net/2025/01/03/xVEL8l5kH7q3eOP.png)

![macro hover](https://s2.loli.net/2025/01/03/1QRXJnE6i4FOvdI.png)

![prop hover](https://s2.loli.net/2025/01/03/ayzH4lGgtUBWpSO.png)

![alias group hover](https://s2.loli.net/2025/01/03/jD9vxHoeylE5kWc.png)

## Supported IDEs

- Visual Studio Code
Expand Down Expand Up @@ -112,9 +123,9 @@ In Windows your path should be like this:
"X:\\path\\to\\your\\project": [
"X:\\path\\to\\your\\xx.jar",
//Jar classpath
"X:\\path\\to\\your\\project\\build\\classes\\kotlin\\main"
"X:\\path\\to\\your\\project\\build\\classes\\kotlin\\main",
//Directory classpath
]
],
}
```

Expand All @@ -125,11 +136,11 @@ In Linux or MacOS your path should be like this:
"/path/to/your/project": [
"/path/to/your/xx.jar",
//Jar classpath
"/path/to/your/project/build/classes/kotlin/main"
"/path/to/your/project/build/classes/kotlin/main",
//Directory classpath
]
],
}
```

If you want to add a new jar classpath automatically, you can use
the [jimmer-gradle](https://github.com/Enaium/jimmer-gradle) plugin and then run the `generateLspDependencies` task.
the [jimmer-gradle](https://github.com/Enaium/jimmer-gradle) plugin and then run the `generateLspDependencies` task.

0 comments on commit c360996

Please sign in to comment.