From f5e182754d9b565616d1b49b0a0c5443b01c3d4f Mon Sep 17 00:00:00 2001 From: Holt59 Date: Mon, 18 Jan 2021 21:26:34 +0000 Subject: [PATCH] =?UTF-8?q?Deploying=20to=20master=20from=20=20@=206cab2a5?= =?UTF-8?q?55b88161115fe3942d2370b37b2bf4c79=20=F0=9F=9A=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- _sources/setup-tools.rst.txt | 4 ++-- setup-tools.html | 40 ++++++++++++++++++------------------ 2 files changed, 22 insertions(+), 22 deletions(-) diff --git a/_sources/setup-tools.rst.txt b/_sources/setup-tools.rst.txt index 365ce7d..33691e4 100644 --- a/_sources/setup-tools.rst.txt +++ b/_sources/setup-tools.rst.txt @@ -106,7 +106,7 @@ after saving files from your project. ``Tasks: Configure task`` or open ``.vscode/tasks.json``) using the following snippet (replace the name and directory as needed): -.. code:: +.. code:: javascript // .vscode/tasks.json { @@ -130,7 +130,7 @@ after saving files from your project. 3. Add the following to your Visual Studio Code settings (``.vscode/settings.json``) -.. code:: +.. code:: javascript // .vscode/settings.json { diff --git a/setup-tools.html b/setup-tools.html index fa72518..b80b949 100644 --- a/setup-tools.html +++ b/setup-tools.html @@ -367,22 +367,22 @@ after saving files from your project.

Tasks: Configure task or open .vscode/tasks.json) using the following snippet (replace the name and directory as needed):

-
// .vscode/tasks.json
-{
-    // See https://go.microsoft.com/fwlink/?LinkId=733558
-    // for the documentation about the tasks.json format
-    "version": "2.0.0",
-    "tasks": [
-        {
-            "label": "reload plugin",
-            "type": "shell",
-            "command": "$MO2DIR/ModOrganizer.exe",
-            "args": [
-                "reload-plugin", "My Plugin"
-            ]
-        }
-    ]
-}
+
// .vscode/tasks.json
+{
+    // See https://go.microsoft.com/fwlink/?LinkId=733558
+    // for the documentation about the tasks.json format
+    "version": "2.0.0",
+    "tasks": [
+        {
+            "label": "reload plugin",
+            "type": "shell",
+            "command": "$MO2DIR/ModOrganizer.exe",
+            "args": [
+                "reload-plugin", "My Plugin"
+            ]
+        }
+    ]
+}
 
    @@ -390,11 +390,11 @@ snippet (replace the name and directory as needed):

    extension from Visual Studio Code marketplace.

  1. Add the following to your Visual Studio Code settings (.vscode/settings.json)

-
// .vscode/settings.json
+
// .vscode/settings.json
 {
-    "triggerTaskOnSave.on": true,
-    "triggerTaskOnSave.tasks": {
-        "reload plugin": [
+    "triggerTaskOnSave.on": true,
+    "triggerTaskOnSave.tasks": {
+        "reload plugin": [
             "*.py"
         ]
     }