All keyboard events for my NSTableView are disabled. I can't use arrows or select a row with space bar.
The NSTAbleView belongs to a NSPanel, which is the current key Window, and the NSTableView is the first responder of the panel:
print (int) [self isKeyWindow] $1 = 1
po [self firstResponder] <NSTableView: 0xa7c6cc0>
If I remove the table from my panel (and also the other table) the ESC button works again. I guess something is wrong with the table event handling.
thanks