mac自定义快捷键使用的系统class是什么?

最近换了mac很多快捷键都失效了,原因是快捷键作用域里标记了“.platform-win32”, “.platform-linux”
现在我想手动添加一些mac系统下的快捷键,请问对应的class应该是什么?

在哪里可以系统的查询到这些class和element的名称呢?

.platform-darwin,在 Settings 里的 Keybindings 里就可以看到

你好,我在resolver里确实看到了这个class,但是在keymap.cson里不知道为什么不生效:
加入.platform-darwin之后无法触发快捷键,resolver里看到快捷键是灰色的未触发

操作系统是:macOS Sierra 10.12.5

'atom-text-editor .platform-darwin':
  'f3': 'find-and-replace:find-next'
  'shift-f3': 'find-and-replace:find-previous'
  'ctrl-up': 'editor:move-line-up'
  'ctrl-down': 'editor:move-line-down'
  'ctrl-shift-p': 'command-palette:toggle'
  'ctrl-shift-d': 'editor:duplicate-lines'
  'ctrl-enter': 'editor:newline-below'
  'ctrl-s': 'core:save'
  'ctrl-f': 'find-and-replace:show'
  'ctrl-z': 'core:undo'
  'ctrl-x': 'core:cut'
  'ctrl-c': 'core:copy'
  'ctrl-v': 'core:paste'
  'ctrl-backspace': 'delete-to-beginning-of-word'
  'ctrl-/': 'editor:toggle-line-comments'
  'ctrl-a': 'core:select-all'

改成 '.platform-darwin atom-text-editor':,这里实际上是 CSS 选择器,顺序是有意义的

原来如此,不懂css,学到了 感谢