Skip to content

Move CommandNotFoundException suggestion to an experimental feature#8805

Merged
anmenaga merged 2 commits intoPowerShell:masterfrom
SteveL-MSFT:command-suggestion-experimental
Feb 6, 2019
Merged

Move CommandNotFoundException suggestion to an experimental feature#8805
anmenaga merged 2 commits intoPowerShell:masterfrom
SteveL-MSFT:command-suggestion-experimental

Conversation

@SteveL-MSFT
Copy link
Copy Markdown
Member

@SteveL-MSFT SteveL-MSFT commented Jan 31, 2019

PR Summary

Make the suggestion on a CommandNotFoundException an ExperimentalFeature.

PR Context

The current design of suggestions is closely tied to the host (ConsoleHost in this case). The ConsoleHost checks if there was anything from the last command and initiates an evaluation of suggestions. The evaluation of suggestions checks if the last command failed by looking at $?. If so, then it applies each suggestion. In the case of CommandNotFound, this is based on looking at the ErrorRecord at $Error[0] which is one problem with the suggestion framework as it only looks at the most recent error. If found, it applies this new suggestion and it outputs the possible commands. The problem is if a script is run in the command line (or part of a pipeline), and the ErrorAction is SilentlyContinue, the error still shows up in $Error so the suggestion applies, but because you don't see the non-terminating error message, you have no context of how the suggestion applies.

A proper fix is much more complicated as it requires redesigning the suggestion framework:

  • Currently, suggestions are initiated by the host (consolehost in this case) and should be part of the ErrorRecord so that it works correctly remotely and in other hosts
  • ErrorRecord has a member called RecommendedAction that should contain the suggestion
  • The code to invoke getting suggestions needs to be moved out of consolehost and closer to where the ErrorRecord is created
  • Formatter for ErrorRecord needs to be updated to show the RecommendedAction member
  • Suggestions should be in its own stream or Information stream rather than written directly to the host

Temporary resolution to #8793

No test added/modified as suggestions are currently written directly to the host.

PR Checklist

@SteveL-MSFT
Copy link
Copy Markdown
Member Author

@anmenaga I believe we can merge this

@anmenaga anmenaga merged commit d9be648 into PowerShell:master Feb 6, 2019
@anmenaga anmenaga added the CL-Experimental Indicates that a PR should be marked as an Experimental Feature in the Change Log label Feb 6, 2019
@SteveL-MSFT SteveL-MSFT deleted the command-suggestion-experimental branch February 7, 2019 01:00
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

CL-Experimental Indicates that a PR should be marked as an Experimental Feature in the Change Log

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants