I'm trying to create my own key shortcut to act as the arrow keys in Visual Studio Code.
When I hit "ctrl-p" it pops up a window that I can navigate. However, when I use my special keybinding, which I've set as
{
"key": "alt+i",
"command": "cursorUp",
"when": "textInputFocus"
}
it does not move up to the next option like pressing the up arrow does.
I'm guessing this is due to having either the wrong command or the wrong "when" for getting the keymap to trigger when that window is open.
Normally in Atom I'd just use the key-binding-resolver, but Visual Studio Code doesn't appear to have that yet.
What is the correct command and "when" to navigate through the panels such as the "ctrl-p" panel in Visual Studio Code?