1 /* This Source Code Form is subject to the terms of the Mozilla Public 2 * License, v. 2.0. If a copy of the MPL was not distributed with this 3 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 4 5 {u"keypress", nullptr, u" ", u"shift", u"cmd_scrollPageUp"}, 6 {u"keypress", nullptr, u" ", nullptr, u"cmd_scrollPageDown"}, 7 {u"keypress", u"VK_LEFT", nullptr, nullptr, u"cmd_moveLeft"}, 8 {u"keypress", u"VK_RIGHT", nullptr, nullptr, u"cmd_moveRight"}, 9 {u"keypress", u"VK_LEFT", nullptr, u"shift", u"cmd_selectLeft"}, 10 {u"keypress", u"VK_RIGHT", nullptr, u"shift", u"cmd_selectRight"}, 11 {u"keypress", u"VK_UP", nullptr, nullptr, u"cmd_moveUp"}, 12 {u"keypress", u"VK_DOWN", nullptr, nullptr, u"cmd_moveDown"}, 13 {u"keypress", u"VK_UP", nullptr, u"shift", u"cmd_selectUp"}, 14 {u"keypress", u"VK_DOWN", nullptr, u"shift", u"cmd_selectDown"}, 15 {u"keypress", nullptr, u"z", u"accel", u"cmd_undo"}, 16 {u"keypress", nullptr, u"z", u"accel,shift", u"cmd_redo"}, 17 {u"keypress", nullptr, u"x", u"accel", u"cmd_cut"}, 18 {u"keypress", nullptr, u"c", u"accel", u"cmd_copy"}, 19 {u"keypress", nullptr, u"v", u"accel", u"cmd_paste"}, 20 {u"keypress", nullptr, u"v", u"accel,shift", u"cmd_pasteNoFormatting"}, 21