Skip to content

Instantly share code, notes, and snippets.

@cezarypiatek
Created June 27, 2022 17:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cezarypiatek/41abc8ad6bb0db19848aa8973bec1b9b to your computer and use it in GitHub Desktop.
Save cezarypiatek/41abc8ad6bb0db19848aa8973bec1b9b to your computer and use it in GitHub Desktop.
$a.ResourceDictionary.ChildNodes |? {$_.Key -match "Shortcut|Description"} |% {@{Type= $_.Key; Value= $_.'#text'; Id = $_.Key -replace '/Default/PatternsAndTemplates/LiveTemplates/Template/=(\w+)/(Description|Shortcut)/@EntryValue','$1'} } | Group-Object -Property Id |% { New-Object PSObject -Property @{ Shortcut = $_.Group[0].Value; Description = $_.Group[1].Value}} | Sort-Object -Property Shortcut | ogv
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment