Add .vscode/extensions.json #23

Open
opened 2019-08-08 14:19:45 +00:00 by NatoBoram · 1 comment
NatoBoram commented 2019-08-08 14:19:45 +00:00 (Migrated from github.com)

https://fabricmc.net/wiki/tutorial:vscode_setup

A few plugins are recommended to ensure that you get the best experience possible. You only need to install these once.

These can be added with a .vscode/extensions.json.

{
    // See http://go.microsoft.com/fwlink/?LinkId=827846 to learn about workspace recommendations.
    // Extension identifier format: ${publisher}.${name}. Example: vscode.csharp
    // List of extensions which should be recommended for users of this workspace.
    "recommendations": [
        "redhat.java",
        "vscjava.vscode-java-debug",
        "vscjava.vscode-java-pack"
    ],
    // List of extensions recommended by VS Code that should not be recommended for users of this workspace.
    "unwantedRecommendations": []
}
<https://fabricmc.net/wiki/tutorial:vscode_setup> > A few plugins are recommended to ensure that you get the best experience possible. You only need to install these once. > > * [Language Support for Java(TM) by Red Hat](https://marketplace.visualstudio.com/items?itemName=redhat.java) > * [Debugger for Java](https://marketplace.visualstudio.com/items?itemName=vscjava.vscode-java-debug) > * [Java Extension Pack](https://marketplace.visualstudio.com/items?itemName=vscjava.vscode-java-pack) These can be added with a `.vscode/extensions.json`. ```jsonc { // See http://go.microsoft.com/fwlink/?LinkId=827846 to learn about workspace recommendations. // Extension identifier format: ${publisher}.${name}. Example: vscode.csharp // List of extensions which should be recommended for users of this workspace. "recommendations": [ "redhat.java", "vscjava.vscode-java-debug", "vscjava.vscode-java-pack" ], // List of extensions recommended by VS Code that should not be recommended for users of this workspace. "unwantedRecommendations": [] } ```
modmuss50 commented 2019-08-08 14:21:42 +00:00 (Migrated from github.com)

Good idea, this would go into loom vscode task if it was going to go anywhere.

Good idea, this would go into loom `vscode` task if it was going to go anywhere.
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: Steven/fabric-example-mod#23