mirror of
https://github.com/Foundry376/Mailspring.git
synced 2024-11-11 18:32:20 +08:00
a46bad4eb7
Summary: Keymaps & menus CSON => JSON, remove AtomKeymaps, CommandRegistry use of CSS selectors, use Mousetrap instead Important Notes: - The `application:` prefix is reserved for commands which are handled in the application process. Don't use it for other things. You will not receive the events in the window. - Maintaining dynamic menus seems to come with quite an overhead, because Electron updates the entire menu every time. In the future, we'll need https://github.com/electron/electron/issues/528 to really make things nice. I will be tracking this upstream. - The format for keyboard shortcuts has changed. `cmd-X` is now `command+shift+x` Test Plan: Run tests Reviewers: juan, evan Reviewed By: evan Differential Revision: https://phab.nylas.com/D2917
17 lines
989 B
Matlab
17 lines
989 B
Matlab
# This is the core set of universal, cross-platform keymaps. This is
|
|
# extended in the following places:
|
|
#
|
|
# 1. keymaps/base.cson - (This file) Core, universal keymaps across all platforms
|
|
# 2. keymaps/base-darwin.cson - Any universal mac-only keymaps
|
|
# 3. keymaps/base-win32.cson - Any universal windows-only keymaps
|
|
# 4. keymaps/base-darwin.cson - Any universal linux-only keymaps
|
|
# 5. keymaps/templates/Gmail.cson - Gmail key bindings for all platforms
|
|
# 6. keymaps/templates/Outlook.cson - Outlook key bindings for all platforms
|
|
# 7. keymaps/templates/Apple Mail.cson - Mac Mail key bindings for all platforms
|
|
# 8. some/package/keymaps/package.cson - Keymaps for a specific package
|
|
# 9. ~/.nylas/keymap.cson - Custom user-specific overrides
|
|
#
|
|
# NOTE: We have a special N1 extension called `mod` that automatically
|
|
# uses `cmd` on mac and `ctrl` on windows and linux. This covers most
|
|
# cross-platform cases. For truely platform-specific features, use the
|
|
# platform keymap extensions.
|