Created initial assets

This commit is contained in:
2025-10-07 10:43:34 -06:00
parent 377ab91af7
commit 88288a98b6
5 changed files with 58 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
Set-PSReadLineKeyHandler -Chord "alt+e" -ScriptBlock {
$_old = $null
[Microsoft.PowerShell.PSConsoleReadline]::GetBufferState([ref]$_old, [ref]$null)
if ($_old) {
[Microsoft.PowerShell.PSConsoleReadLine]::Insert('⌛')
$_new = (loki -e $_old)
[Microsoft.PowerShell.PSConsoleReadLine]::DeleteLine()
[Microsoft.PowerShell.PSConsoleReadline]::Insert($_new)
}
}