I’m not sure how the maintainers would like to implement this, but it would be great to have support for .jar files without any configuration or at least some mention of it in the documentation for this extension. Below is an example of the Zed settings files I’ve created to make jar files work in my project. I haven’t done much research on this, but I just wanted to get the conversation started. I’m also not sure if using a lib/ folder is better, but here’s the current project structure:
./
├── .zed/
│ ├── debug.json
│ ├── settings.json
│ └── tasks.json
├── MyJar.jar
├── bin/
└── src/
├── Main.java
└── ExampleFile.java
I’m not sure how the maintainers would like to implement this, but it would be great to have support for
.jarfiles without any configuration or at least some mention of it in the documentation for this extension. Below is an example of the Zed settings files I’ve created to make jar files work in my project. I haven’t done much research on this, but I just wanted to get the conversation started. I’m also not sure if using alib/folder is better, but here’s the current project structure: