Outils pour utilisateurs

Outils du site


prog:vsc:extension

Différences

Ci-dessous, les différences entre deux révisions de la page.

Lien vers cette vue comparative

Prochaine révision
Révision précédente
prog:vsc:extension [2024/01/18 09:24] – Fusion de Python, cmake, Text Marker rootprog:vsc:extension [2024/12/09 12:18] (Version actuelle) – Ajout de "WSL" root
Ligne 18: Ligne 18:
 Dans les préférences utilisateurs (''CTRL+,''), mettre Dans les préférences utilisateurs (''CTRL+,''), mettre
   * ''Editor: Tab Size'' à ''2''.   * ''Editor: Tab Size'' à ''2''.
-  * ''pylint args'' : mettre les même arguments que [[prog:pylint|pylint]]+  * ''pylint args'' : mettre les même arguments que [[lang:python:linter#pylint|pylint]]
  
 ====Bugs==== ====Bugs====
Ligne 61: Ligne 61:
  
 [[https://stackoverflow.com/questions/66698247/vscode-the-python-path-in-your-debug-configuration-is-invalid|VSCode: The Python path in your debug configuration is invalid]] {{ :prog:vsc:python:vscode_the_python_path_in_your_debug_configuration_is_invalid_-_stack_overflow_7_15_2021_10_26_55_am_.html |Archive du 18/03/2021 le 15/07/2021}} [[https://stackoverflow.com/questions/66698247/vscode-the-python-path-in-your-debug-configuration-is-invalid|VSCode: The Python path in your debug configuration is invalid]] {{ :prog:vsc:python:vscode_the_python_path_in_your_debug_configuration_is_invalid_-_stack_overflow_7_15_2021_10_26_55_am_.html |Archive du 18/03/2021 le 15/07/2021}}
 +
 +=====Python C++ Debugger=====
 +
 +Pouvoir déboguer un module python compilé en C++ depuis python.
 +
 +[[https://marketplace.visualstudio.com/items?itemName=benjamin-simmonds.pythoncpp-debug|Marketplace]] [[https://github.com/benibenj/vscode-pythonCpp.git|Github]]
 +
 +Config par défaut:
 +
 +<file javascript launch.json>
 +{
 +  "version": "0.2.0",
 +  "configurations": [
 +    {
 +      "name": "Python C++ Debug",
 +      "type": "pythoncpp",
 +      "request": "launch",
 +      "pythonConfig": "default",
 +      "cppConfig": "default (win) Attach",
 +    }
 +  ]
 +}
 +</file>
 +
 +Configuration avec option pour Python et le debugger et exécuter "Python C++ Debug".
 +
 +<file javascript launch.json>
 +{
 +  "version": "0.2.0",
 +  "configurations": [
 +    {
 +      "name": "Python C++ Debug",
 +      "type": "pythoncpp",
 +      "request": "launch",
 +      "pythonLaunchName": "Python: Current File",
 +      "cppAttachName": "(Windows) Attach",
 +    },
 +    {
 +      "name": "(Windows) Attach",
 +      "type": "cppvsdbg",
 +      "request": "attach",
 +      "processId": "",
 +      "symbolOptions": {
 +        "searchMicrosoftSymbolServer": true,
 +        "cachePath": "C:\\Users\\XXXXXXXXX\\SymbolCache"
 +      }
 +    },
 +    {
 +      "name": "Python: Current File",
 +      "type": "python",
 +      "request": "launch",
 +      "program": "${file}",
 +      "console": "integratedTerminal"
 +    }
 +  ]
 +}
 +</file>
  
 =====CMake===== =====CMake=====
Ligne 84: Ligne 141:
 Il faut sélectionner le mot, clique-droit et ''Toggle Highlight''. Il faut sélectionner le mot, clique-droit et ''Toggle Highlight''.
  
 +=====WSL=====
 +
 +Pour déboguer un programme tournant sous WSL depuis Windows, il suffit de créer un ''launch.json''.
 +
 +<code javascript>
 +{
 +    // Use IntelliSense to learn about possible attributes.
 +    // Hover to view descriptions of existing attributes.
 +    // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
 +    "version": "0.2.0",
 +    "configurations": [
 +        {
 +            "name": "C/C++ Runner: Debug Session",
 +            "type": "cppdbg",
 +            "request": "launch",
 +            "args": [],
 +            "stopAtEntry": false,
 +            "externalConsole": false,
 +            "cwd": "llvm-project/build/bin",
 +            "program": "llvm-project/build/bin/clang-tidy",
 +            "MIMode": "gdb",
 +            "miDebuggerPath": "/usr/bin/gdb",
 +            "setupCommands": [
 +                {
 +                    "description": "Enable pretty-printing for gdb",
 +                    "text": "-enable-pretty-printing",
 +                    "ignoreFailures": true
 +                }
 +            ]
 +        }
 +    ]
 +}
 +</code>
prog/vsc/extension.1705566242.txt.gz · Dernière modification : 2024/01/18 09:24 de root