aichat/scripts/shell-integration/integration.ps1
2024-03-02 08:07:06 +00:00

10 lines
407 B
PowerShell

Set-PSReadLineKeyHandler -Chord "alt+e" -ScriptBlock {
$_old = $null
[Microsoft.PowerShell.PSConsoleReadline]::GetBufferState([ref]$_old, [ref]$null)
if ($_old) {
[Microsoft.PowerShell.PSConsoleReadLine]::Insert('⌛')
$_new = (aichat -e $_old)
[Microsoft.PowerShell.PSConsoleReadLine]::DeleteLine()
[Microsoft.PowerShell.PSConsoleReadline]::Insert($_new)
}
}