Closed
Description
Environment
- Editor and Version (VS Code, Atom, Sublime): VSCode 1.53.2
- Your primary theme: dark (default)
Issue Description
Since the new extension for PowerShell was installed, the highliting became very "poor". Almost everything is now in blue and before there was white and yellow. Now, it's difficult to identify things... it's impossible to see when a function is called on an object and also when we access an object member. And it's also difficult to identify function parameter tags...
Screenshots
Expected Behavior
Previous version of the extension
Code Samples
Here's the code that is on the screenshots
# Création d'une connexion au serveur vRA pour accéder à ses API REST
$logHistory.addLineAndDisplay("Connecting to vRA...")
$vra = [vRAAPI]::new($configVra.getConfigValue(@($targetEnv, "infra", "server")),
$targetTenant,
$configVra.getConfigValue(@($targetEnv, "infra", $targetTenant, "user")),
$configVra.getConfigValue(@($targetEnv, "infra", $targetTenant, "password")))
# Parcours de la liste des BG
Foreach ($bg in $vra.getBGList() )
{
$logHistory.addLineAndDisplay(("Processing BG '{0}'..." -f $bg.name))
$logHistory.addLineAndDisplay("> Getting VM List...")
$vmList = $vra.getBGItemList($bg, "Virtual Machine")
$logHistory.addLineAndDisplay(("> {0} VMs found" -f $vmList.count))
Foreach($vm in $vmList)
{
$logHistory.addLineAndDisplay((">> Processing VM '{0}'..." -f $vm.name))
if(((getvRAObjectCustomPropValue -object $vm -customPropName $global:VRA_CUSTOM_PROP_VRA_BG_NAME) -ne $bg.name) -or
((getvRAObjectCustomPropValue -object $vm -customPropName $global:VRA_CUSTOM_PROP_VRA_TENANT_NAME) -ne $targetTenant))
{
$logHistory.addLineAndDisplay("Values need to be updated")
}
}
}