소스 검색

VS Code: remove duplicate code block

Max Hilbrunner 2 년 전
부모
커밋
8e2f143824
1개의 변경된 파일1개의 추가작업 그리고 15개의 파일을 삭제
  1. 1 15
      contributing/development/configuring_an_ide/visual_studio_code.rst

+ 1 - 15
contributing/development/configuring_an_ide/visual_studio_code.rst

@@ -35,8 +35,7 @@ Importing the project
 
 - Within the ``tasks.json`` file find the ``"tasks"`` array and add a new section to it:
 
-.. tabs::
-  .. code-tab:: js LinuxBSD
+  .. code-block:: js
 
     {
       "label": "build",
@@ -50,19 +49,6 @@ Importing the project
       "problemMatcher": "$msCompile"
     }
 
-  .. code-tab:: js Windows
-
-    {
-      "label": "build",
-      "group": "build",
-      "type": "shell",
-      "command": "scons",
-      "args": [
-        "dev_build=yes",
-      ],
-      "problemMatcher": "$msCompile"
-    }
-
 .. figure:: img/vscode_3_tasks.json.png
    :figclass: figure-w480
    :align: center