PowerShell / PSArm

PSArm is a PowerShell module that provides a PowerShell-embedded domain-specific language (DSL) for Azure Resource Manager (ARM) templates
MIT License
78 stars 19 forks source link

Add the proof-of-concept tab completion support to the DSL #3

Closed daxian-dbw closed 4 years ago

daxian-dbw commented 4 years ago

Add the proof-of-concept tab completion support to the DSL:

  1. Argument completer to the -Name and -Value of the Property function. It's able to figure out the context and provide completion results based on the context.
  2. Argument completer to the -ResourceName of the ResourceId function.

In future, we should be able to complete arguments for the -Type parameter of the Resource function.

predict