Describe the bug
When renaming a file in the VS Code file explorer, pressing the Delete key doesn't work as expected, because Zowe Explorer intercepts the keypress and tries to delete jobs.
To Reproduce
Steps to reproduce the behavior:
Expected behavior
Outside of the Zowe Explorer pane, Zowe Explorer should not affect the behavior of the Delete key in VS Code.
Screenshots
Attempting to rename a file:

Sometimes this error appears:

Desktop (please complete the following information):
Additional context
I believe the cause is this keybinding defined in package.json:
The event filter "listSupportsMultiselect" seems to include the VS Code file explorer tree.
@crawr Could this be resolved by just using the following when statement?:
"when": "view == zowe.jobs && listSupportsMultiselect"
@lauren-li I tried this one, but it didn't work for me. I also tried restricting it to just the context value but that didn't work either. :thinking:
@crawr I tried this one and it seems to work for me locally:
"when": "focusedView == zowe.jobs && listSupportsMultiselect"
Should I create a PR for this?