We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In constrained mode the global $glyphs variable is not evaludated.
$glyphs
Glyphs to show correctly after the module is loaded.
Glyphs shows as a number instead of as an icon.
Use Invoke-Expression to evaluate the $glyphs varaible. Here is a workaround:
Invoke-Expression
Import-Module Terminal-Icons if ($null -eq $global:glyphs) { $glPath = Split-path (get-module Terminal-Icons).Path $global:glyphs = Invoke-Expression "& '$glPath/Data/glyphs.ps1'" }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In constrained mode the global
$glyphs
variable is not evaludated.Expected Behavior
Glyphs to show correctly after the module is loaded.
Current Behavior
Glyphs shows as a number instead of as an icon.
Possible Solution
Use
Invoke-Expression
to evaluate the$glyphs
varaible.Here is a workaround:
Steps to Reproduce (for bugs)
Context
Your Environment
The text was updated successfully, but these errors were encountered: