Andy Jordan
Andy Jordan
Dang this will be way more advanced than my: ```powershell function Initialize-1Password { $env:OP_SESSION_my = op signin my --raw } ``` 😂
FYI @cdhunt SecretManagement is getting some incoming changes to support "unlocking" vaults.
I have a hunch that this is because `Ctrl+?` is the ASCII 'delete' control character.
Frecency is fantastic and what I leaned on heavily in Emacs' history completions, so this would be great.
The vast majority of these key combinations aren't even able to be received by PSReadLine, just on Windows (and experimenting on macOS/Linux is going to reveal this is even _more_...
@akbyrd try this experiment in PowerShell: ``` @andyschwartc421 ~ > [Console]::ReadKey() , KeyChar Key Modifiers ------- --- --------- , OemComma 0 ``` Like, directly execute `[Console]::ReadKey()` and then test your...
It _is_ odd, and it means we (and the users) can't depend on `KeyChar` nor `Modifiers` in these cases. It looks like `Key` is at least consistently `OemComma`, but yeah...
In summary: key chords are a mess.
I am unsure and need to get some more folks to look at this. Also, I had a thought that it probably doesn't even need to build a set, I...
Yup, that's better. No idea why this had a dictionary in the first place, all it needed was a comparer.