Enabling F11 in Hyper terminal

I’ve been using Hyper terminal since this summer and it is a great terminal software.

When I was using DOSBOX, I needed to use F11 key. However, it didn’t work because Hyper assigns F11 to ‘Toggle Full Screen’ feature.

Un-assigning F11 key

You can edit Hyper’s configuration file .hyper from [Edit]-[Preferences…] menu.

module.exports = {
  ...
  keymaps: {
    "window:toggleFullScreen": "",
  }
}

By saving the file, Hyper automatically reflects the change.