Disabling all keyboard commands

i need to disable all the keyboard shortcut key. can you give to me?

Override CommandHandler.doKeyDown to do nothing when you do not want any keyboard-invoked commands to execute. In the simplest case, that would be something like:

$(go.Diagram, . . .,
    { . . .,
      "commandHandler.doKeyDown": function() {}
    })