Joel Bennett
Joel Bennett
I believe there's a bug here in how terminal is handling emoji. Many emoji **also** exist as characters: |Emoji | Text | Emoji| |----------|----------|--------| |Check | ✔︎|✔️ |Email| 📧︎ |📧️...
>> First: it ignores the value of the selector -- it always renders emoji. > Hmm we're feeding the U+FE0E straight to Direct2D to draw it and I was hoping...
Well, I'll have to see what I can do about making my emojis explicitly use the emoji variant. I have to say though -- it seems that if you're going...
You need to _already be using_ a PowerLine font in Windows Terminal before you use the `-PowerLineFont` switch... The simplest thing is to choose a [NerdFont](https://www.nerdfonts.com/) (my current preference is...
You'll have to `Set-PowerLinePrompt -HideErrors` PowerShell doesn't care that you're handling the error. I filed https://github.com/PowerShell/PowerShell/issues/3768 about this years ago. Basically, we're always invoking your scriptblock within a script cmdlet...
I do not, yet. I'll probably just use PSDepends. I have, however, documented that dependency (on [`Configuration`](/PoshCode/Configuration))in the manifest now (and added an undocumented dependency in the build.ps1 on [`ModuleBuilder`](/PoshCode/ModuleBuilder)...
Well, it turns out, now we have `Install-RequiredModule` so I should definitely use that!
Grumble. Ok. I'm supporting ranges _properly_ in [`Install-RequiredModule`](https://www.powershellgallery.com/packages/Install-RequiredModule/2.0.1) with inclusive/exclusive syntax a la nuget version ranges, or pinning to a major version like '2.*' If you want to completely copy...
I'm sure we can add an explicit cast constructor. I definitely would like to be able to add tabcompletion for `X11ColorName` to all the RgbColor parameters ... (hmmmm). The goal...
Ok, I pushed and released (2.5.0 and) 2.6.0 with this fixed, so you can cast X11ColorName enum values to RgbColor. In 2.6.0 I also added an ArgumentCompleter implementation to X11Palette,...