You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Search the existing issues, especially the pinned issues.
Exception report
Oops, something went wrong. Please report this bug with the details below.Report on GitHub: https://github.com/lzybkr/PSReadLine/issues/new-----------------------------------------------------------------------Last 1 Keys: &Exception:System.ArgumentOutOfRangeException: Değer sıfırdan büyük veya eşit ve bu boyuttaki konsolun arabellek boyutundan küçük olmalıdır.Parametre adı: leftGerçek değer -2 idi. konum: System.Console.SetCursorPosition(Int32 left, Int32 top) konum: Microsoft.PowerShell.Internal.VirtualTerminal.set_CursorLeft(Int32 value) konum: Microsoft.PowerShell.PSConsoleReadLine.ReallyRender(RenderData renderData, String defaul konum: Microsoft.PowerShell.PSConsoleReadLine.ForceRender() konum: Microsoft.PowerShell.PSConsoleReadLine.Insert(Char c) konum: Microsoft.PowerShell.PSConsoleReadLine.SelfInsert(Nullable`1 key, Object arg) konum: Microsoft.PowerShell.PSConsoleReadLine.ProcessOneKey(ConsoleKeyInfo key, Dictionary`2 dispatchTable, Boolean ignoreIfNoAction, Object arg) konum: Microsoft.PowerShell.PSConsoleReadLine.InputLoop() konum: Microsoft.PowerShell.PSConsoleReadLine.ReadLine(Runspace runspace, EngineIntrinsics engineIntrinsics)-----------------------------------------------------------------------
PowerShell'de "&" karakteri girildiğinde herhangi bir hata mesajı görüntülenmemelidir. İmleç bir sonraki karaktere geçmeli ve kullanıcının komut yazmaya devam etmesine izin verilmelidir.
Aşağıdaki PowerShell komut dosyası çalıştırıldığında:
Write-Host"Merhaba Dünya"&
Ekranda sadece "Merhaba Dünya" mesajı görüntülenmeli ve herhangi bir hata mesajı görüntülenmemelidir.
### Actual behavior
PowerShell'de "&" karakteri girildiğinde, aşağıdaki hata mesajı görüntüleniyor ve komut istemi kilitleniyor:System.ArgumentOutOfRangeException: Değer sıfırdan büyük veya eşit ve bu boyuttaki konsolun arabellek boyutundan küçük olmalıdır.Parametre adı: leftGerçek değer -2 idi.Bu hata, kullanıcının komut girmeye devam etmesini engelliyor ve PowerShell'i yeniden başlatmayı gerektiriyor.
Aşağıdaki PowerShell komut dosyası çalıştırıldığında:
```powershell
Write-Host"Merhaba Dünya"&
Ekranda "Merhaba Dünya" mesajı görüntülenmiyor ve aşağıdaki hata mesajı görüntüleniyor:
System.ArgumentOutOfRangeException: ...
Bu hata, komut dosyasının çalışmasını durduruyor ve kullanıcının beklenen çıktıyı görmesini engelliyor.
The text was updated successfully, but these errors were encountered:
This issue was already fixed (see #1306). Please upgrade to the 2.3.5 version of PSReadLine from PowerShell Gallery.
See the upgrading section for instructions. Please let us know if you run into the same issue with the latest version.
Prerequisites
Exception report
Screenshot
N/A
Environment data
Steps to reproduce
At line:1 char:1
Missing expression after '&' in pipeline element.
Expected behavior
PowerShell'de "&" karakteri girildiğinde herhangi bir hata mesajı görüntülenmemelidir. İmleç bir sonraki karaktere geçmeli ve kullanıcının komut yazmaya devam etmesine izin verilmelidir.
Aşağıdaki PowerShell komut dosyası çalıştırıldığında:
The text was updated successfully, but these errors were encountered: