PowerShell / PowerShell/vscode-powershell

Adding Predictive IntelliSense to PowerShell VSCode Extension

Abierto
#3,301 8 comentarios 5 reacciones 0 asignados Ver en GitHub

Nadie ha tomado este issue todavía.

Area-IntelliSense Issue-Enhancement
Lenguaje dominante
TypeScript
Estrellas
1.9k
Forks
547
Métricas de merge de PR
Sin PR fusionados en 30 d

Descripción

Adding Predictive IntelliSense to PowerShell VSCode Extension

Summary of new feature

Predictive IntelliSense is an addition to the concept of tab completion that assists the user in
successfully completing commands. This enables new and experienced users of PowerShell to discover,
edit, and execute full commands based on matching predictions from the users history and additional
domain specific plugins such as
Az.Tools.Predictor.

PowerShell users would benefit from predictions in VSCode Terminal (PowerShell Integrated Console)
and Editor:

  • PowerShell users with previous cmdlet experience receive suggestions from history and additional
    plugins, accelerating the time to command completion. Historical predictions come from the users
    PSReadLine history of completed commands, allowing them to quickly accept the prediction.

  • PowerShell users without previous cmdlet experience receive guided suggestions from plugin
    predictors like Az.Tools.Predictor to help successfully complete the command. These plugins may
    provide a range of guided assistance in the form of complete commands or suggesting parameters and
    arguments.

Terminal

Terminal (PowerShell Integrated Console), should have the same features as PowerShell (shell) with
predictions as described in this
blog.

This includes InLineView and ListView for predictions, switchable with F2 key.

  • Example of InLineView in PowerShell Integrated Console:

Picture1

  • Example of ListView in PowerShell Integrated Console:

PowerShelt Integrated Console v2021 2 2

Editor

Displaying predictions in the editor could be similar to IntelliCode for Visual Studio described
here.

When the user begins to type a cmdlet, a prediction using InLineView appears above other cmdlet
names. A star indicates that the suggestion comes from a predictor, followed by the InLineView
prediction, followed by the prediction source.

Editor1

After the cmdlet name, when the user types dash (-) to begin a parameter, the first suggestion pair
(parameter and argument) is displayed along with the prediction source. As the user continues to
type the next parameter with a dash, the next suggestion pair is displayed until the prediction is
complete.

Editor2

In the above example, the Az.Tools.Predictor will suggest the parameter and argument based on:

  • Examples - Ml-based plugins may learn the most common uses of a cmdlet from documentation examples.
  • Reuse - If the parameter and argument pair has been previously typed within the current session,
    the predictor will supply the previously typed argument.
  • Syntax - If no examples or history is available, the predictor will display the parameter with the
    Object type for the argument.

Enabling/Disabling

Predictions are enabled and disabled using the Set-PSReadLineOption -PredictionSource <argument>
and may be stored in the users profile. Accepted values for the argument are None, History,
HistoryAndPlugin.

Configuring a predictor

Customizing prediction color, keybindings, and additional plugins is accomplished through PSReadLine
Set-PSReadLineOption and Set-PSReadLineKeyHandler cmdlets. Custom settings may be stored in the
users profile.

Guía de contribución

Abrir la guía de contribución

Primeros pasos

  1. Lee el issue completo y luego la guía de contribución del proyecto.
  2. Comenta en el issue que vas a ocuparte — evita que dos personas hagan lo mismo.
  3. Haz un fork del repositorio y trabaja en una rama.
  4. Abre un pull request que haga referencia al número del issue.

Línea de trabajo

No se nombran archivos fuente, pruebas ni puntos de entrada. Empieza por desglosar los requisitos de Terminal y Editor, y después revisa cómo se integra la extensión con la configuración de predicciones y los plugins de predicción de PSReadLine; se considera terminado cuando las predicciones de historial/plugins compatibles, las vistas, la configuración y las combinaciones de teclas funcionan según lo descrito.

Escrito por el modelo de indexación a partir del texto del issue.

Evaluación

Stack tecnológico
powershell, typescript, vscode
Área
developer-experience, devtools
Tipo de issue
Nueva funcionalidad
Dificultad
5/5
Tiempo estimado
Más de una semana
Estado de actividad
Estancado
Claridad
Bastante claro
Aptitud para principiantes
20/100

Recibe los nuevos issues en tu correo

Un resumen breve de issues de GitHub para principiantes.