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

Link detection for files not working in task terminals #9677

Closed
kenneth-marut-work opened this issue Jun 30, 2021 · 0 comments · Fixed by #9695
Closed

Link detection for files not working in task terminals #9677

kenneth-marut-work opened this issue Jun 30, 2021 · 0 comments · Fixed by #9695
Labels
tasks issues related to the task system terminal issues related to the terminal

Comments

@kenneth-marut-work
Copy link
Contributor

Bug Description:

When output is generated in a terminal which has been started by a task, file link detection does not seem to work which is inconvenient when you want a quick way to open files mentioned in the terminal.

Steps to Reproduce:

Good Behavior

  1. Open VSCode to an empty folder and create a .vscode/tasks.json file as well as an empty file named test.txt.
  2. Open a VSCode terminal and run the command echo $PWD/test.txt, hover over the terminal output and you should be able to ctrl+click on the file name
  3. Populate the tasks.json file with the content below and run that task, step 2 should still work:
{
    "version": "2.0.0",
    "tasks": [
        {
            "command": "echo $PWD/test.txt",
            "label": "Test Task",
            "type": "shell"
        }
    ]
}

Bad Behavior
Repeat the above steps in Theia, but notice that the output generated from the task is not clickable

Additional Information

  • Operating System: Linux
  • Theia Version: Master
@kenneth-marut-work kenneth-marut-work added terminal issues related to the terminal tasks issues related to the task system labels Jun 30, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
tasks issues related to the task system terminal issues related to the terminal
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant