[GH #1516] Keyboard shortcuts not working

Debugging following code shows that variable selectDataWithHeadersShortcut is empty. If i use [“ctrl”, “a”], the variable is not empty. Does this mean that ctrl+shift+space shortcut does not exist, even though it’s mentioned in the docs?

const gridContext = hot.getShortcutManager().getContext('grid');
const selectDataWithHeadersShortcut = gridContext.getShortcuts([
    "control/meta",
    "shift",
    "space",
  ]);