Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cannot set up an external console in launch.json #168

Open
jooyoungseo opened this issue Jan 5, 2023 · 1 comment
Open

Cannot set up an external console in launch.json #168

jooyoungseo opened this issue Jan 5, 2023 · 1 comment

Comments

@jooyoungseo
Copy link

For Python, it is possible to use an external console by using the following setting in launch.json:

{
    "version": "0.2.0",
    "configurations": [
        {
            "name": "Python: Terminal (external)",
            "type": "python",
            "request": "launch",
            "stopOnEntry": false,
            "pythonPath": "C:/ProgramData/Miniconda3/Scripts/ipython.exe",
            "program": "${file}",
            "cwd": "",
            "console": "externalTerminal",
            "env": {},
            "envFile": "${workspaceFolder}/.env",
            "debugOptions": [
                "RedirectOutput"
            ]
        }
    ]
}

Would there be any way to use an external console for R debugger?

@eitsupi
Copy link

eitsupi commented Jan 5, 2023

I think this is duplicate of #147.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants