fix(keymaps): Correctly map mod+z to undo, instead of just z (#2663)

This commit is contained in:
Juan Tejada 2016-09-16 13:19:42 -07:00
parent 664943354e
commit 6b7b8d2adb
2 changed files with 2 additions and 2 deletions

View file

@ -23,7 +23,7 @@
"core:select-down": "shift+j", "core:select-down": "shift+j",
"core:focus-item": "o", "core:focus-item": "o",
"core:select-item": "x", "core:select-item": "x",
"core:undo": "z", "core:undo": "mod+z",
"message-list:previous-message": "p", "message-list:previous-message": "p",
"message-list:next-message": "n", "message-list:next-message": "n",

View file

@ -32,5 +32,5 @@
"core:remove-and-previous": ["}", "]"], "core:remove-and-previous": ["}", "]"],
"core:remove-and-next": ["{", "["], "core:remove-and-next": ["{", "["],
"core:undo": "z" "core:undo": "mod+z"
} }