Tyler James Leonhardt

Results 86 issues of Tyler James Leonhardt

Things that shouldn't be packaged are being packaged. This makes the packaged file 100mb+.

It's not clear that the URL field in the Add A Connection action should include the port.

enhancement
UX

The tabs at the top need to be rearrangeable. md-tabs don't have a way to do this and it looks like they never will.

enhancement

Adding `ErrorType` property to `ErrorRecord` and making `trap`s handle non-terminating errors as well. ```pwsh trap { if($_.ErrorType -eq "Terminating") { "oh no!" } else { "this is ok" continue }...

WG-Engine

# Summary of the new feature/enhancement This is basically the C# version of #84 We have a `dotnet new psmodule` in the [PowerShellStandard repo](https://github.com/PowerShell/PowerShellStandard/tree/master/src/dotnetTemplate) We should have a template for...

Issue-Enhancement

# Summary of the new feature/enhancement This is basically the PowerShell script version of #83 [Plaster](https://github.com/PowerShell/Plaster) has an integration in the PowerShell extension. If we craft a Plaster template, then...

Issue-Enhancement

## Description of the new feature/enhancement For some readline experiences, they support this concept of [paste bracketing](https://cirw.in/blog/bracketed-paste). The idea is simple: * First, the shell emits `esc[?2004h` * This tells...

Issue-Enhancement
Needs-More Investigation

dotnet new psmodule --add-tests would create: foo/src/foo.csproj foo/test/foo.Tests.ps1 (opening this so I remember)

Up-for-Grabs
Area-DotnetNew

I was looking at [these lines](https://github.com/Windos/PoshNotify/blob/master/src/PoshNotify.psm1#L1-L7) and realized that the current code will not fetch a newer version of MacNotify/PSNotifySend if one exists. We should change this to: ```powershell (Get-Module...

Some options: 1. whatever the default sound is for that platform (if the platform supports sound) 1. no sound at all Number 1 means we'd support a `-Silent` switch parameter...

enhancement