A. L
A. L

Reputation: 12639

Atom - unset window:close keybinding/keymap

I'm trying to remove this line in keybindings:

shift-cmd-W window:close    Core    body

Tried to change the keymap.cson but to no avail:

'body':
  'shift-cmd-W': 'unset!'

I'm trying to stop my whole editor closing when I accidentally hit cmd-shift-W

Upvotes: 1

Views: 67

Answers (1)

Exercise To The Reader
Exercise To The Reader

Reputation: 617

Atom may still be running 'ctrl-shift-W', try:

`'body':
  'shift-cmd-W': 'unset!'
  'ctrl-shift-W': 'unset!'

Upvotes: 2

Related Questions