Skip to content

Command aware terminals #20676

Closed
Closed
@Tyriar

Description

@Tyriar

This is a proposal to improve VS Code's integration with the terminal output. Currently you may have noticed that the names terminals have in the dropdown may not represent the command currently being run, especially on Windows.

Problem

On Linux and macOS the behavior is to use the name of the process executable, this does update when new processes are run but unfortunately there is up to a 200ms delay in doing this as we need to poll for it.

On Windows the behavior is to always use the basename of the shell process executable (eg. powershell.exe, cmd.exe, etc.), this does not change when there is a command run or a shell change.

Due to these limitations we can't reliably tell what process/args are currently being run, and therefore cannot surface this information to integrations.

Potential Solution

A setting something like this could be introduced:

"terminal.integrated.promptMatchers": {
  "bash": "(bash-\d\.\d)?$\s(.*)",
  "cmd.exe": "..."
}

Then depending on the process title we have access to described in the Problem section, we can select the valid item from promptMatchers. This could then be used on every line of output to detect when each command starts and finished.

This would enable, among other things, the ability to register link matchers under certain conexts. For example:

// Linkify \w\.\w in the output of a ls command that will open the file when clicked
// openFile have access to the current working directory from the context
term.registerLinkMatcher(/\w\.\w/, link => openFile(link), 0, /*context*/ 'ls');

Given a shell with the default configuration this would allow us to linkify common commands in a relatively

Edge Cases

  • This wouldn't work for custom shells that are launched within a Windows terminal, for example if cmd.exe is configured and powershell.exe is launched from that terminal, the cmd.exe matcher would be used.
  • This would only work for the certain cases when we have the cwd as part of the prompt, if the prompt doesn't contain the cwd would this just be disabled?
  • What about multiple line prompts?

Questions

Related items

Blocked by

Activity

added
feature-requestRequest for new features or functionality
terminalGeneral terminal issues that don't fall under another label
on Feb 15, 2017
added this to the Backlog milestone on Feb 15, 2017
self-assigned this
on Feb 15, 2017
Tyriar

Tyriar commented on Mar 9, 2017

@Tyriar
MemberAuthor

Related idea that would likely be more reliable on Mac/Linux xtermjs/xterm.js#576

Tyriar

Tyriar commented on Mar 15, 2017

@Tyriar
MemberAuthor

The current thinking is to inject escape sequences into the prompt for supported shells (xtermjs/xterm.js#576) and fall back to regex matching (this issue), which can be customized by the user

20 remaining items

Loading
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

Labels

feature-requestRequest for new features or functionalityterminalGeneral terminal issues that don't fall under another label

Type

No type

Projects

No projects

Relationships

None yet

Development

No branches or pull requests

    Participants

    @Tyriar

    Issue actions

      Command aware terminals · Issue #20676 · microsoft/vscode