Open
Description
Repro:
- Windows
- Enable NVDA
- Enable terminal suggest
- Ensure shell integration is not loading PSReadLine
- Type
echo a
, 🐛e
s keep repeating
Right now the intent was for PSReadLine not to be loaded but it was being loaded by module auto loading due to this line:
When we fix that, we need to either:
- always import PSReadLine explicitly before it's used, this would get
633;E
to light up for screen reader users, or - ensure we never send this request completions sequence when PSReadLine is not loaded.
Additionally we should prevent the possibility of getting into a loop like this, I'm not sure why that's happening