Path: blob/main/src/vs/workbench/services/keybinding/browser/keyboardLayouts/jp-roman.darwin.ts
4780 views
/*---------------------------------------------------------------------------------------------1* Copyright (c) Microsoft Corporation. All rights reserved.2* Licensed under the MIT License. See License.txt in the project root for license information.3*--------------------------------------------------------------------------------------------*/45import { KeyboardLayoutContribution } from './_.contribution.js';678KeyboardLayoutContribution.INSTANCE.registerKeyboardLayout({9layout: { id: 'com.google.inputmethod.Japanese.Roman', lang: 'en', localizedName: 'Alphanumeric (Google)' },10secondaryLayouts: [],11mapping: {12KeyA: ['a', 'A', '¯', '̄', 4],13KeyB: ['b', 'B', '˘', '̆', 4],14KeyC: ['c', 'C', '¸', '̧', 4],15KeyD: ['d', 'D', 'ð', 'Ð', 0],16KeyE: ['e', 'E', '´', '́', 4],17KeyF: ['f', 'F', 'ƒ', '', 0],18KeyG: ['g', 'G', '©', '‸', 8],19KeyH: ['h', 'H', 'ˍ', '̱', 4],20KeyI: ['i', 'I', 'ʼ', '̛', 4],21KeyJ: ['j', 'J', '˝', '̋', 4],22KeyK: ['k', 'K', '˚', '̊', 4],23KeyL: ['l', 'L', '-', '̵', 4],24KeyM: ['m', 'M', '˛', '̨', 4],25KeyN: ['n', 'N', '˜', '̃', 4],26KeyO: ['o', 'O', 'ø', 'Ø', 0],27KeyP: ['p', 'P', ',', '̦', 4],28KeyQ: ['q', 'Q', 'œ', 'Œ', 0],29KeyR: ['r', 'R', '®', '‰', 0],30KeyS: ['s', 'S', 'ß', '', 0],31KeyT: ['t', 'T', 'þ', 'Þ', 0],32KeyU: ['u', 'U', '¨', '̈', 4],33KeyV: ['v', 'V', 'ˇ', '̌', 4],34KeyW: ['w', 'W', '˙', '̇', 4],35KeyX: ['x', 'X', '.', '̣', 4],36KeyY: ['y', 'Y', '¥', '', 0],37KeyZ: ['z', 'Z', 'ˀ', '̉', 4],38Digit1: ['1', '!', '¡', '⁄', 0],39Digit2: ['2', '@', '™', '€', 0],40Digit3: ['3', '#', '£', '‹', 0],41Digit4: ['4', '$', '¢', '›', 0],42Digit5: ['5', '%', '§', '†', 0],43Digit6: ['6', '^', 'ˆ', '̂', 4],44Digit7: ['7', '&', '¶', '‡', 0],45Digit8: ['8', '*', '•', '°', 0],46Digit9: ['9', '(', 'ª', '·', 0],47Digit0: ['0', ')', 'º', '‚', 0],48Enter: [],49Escape: [],50Backspace: [],51Tab: [],52Space: [' ', ' ', ' ', ' ', 0],53Minus: ['-', '_', '–', '—', 0],54Equal: ['=', '+', '≠', '±', 0],55BracketLeft: ['[', '{', '“', '”', 0],56BracketRight: [']', '}', '‘', '’', 0],57Backslash: ['\\', '|', '«', '»', 0],58Semicolon: [';', ':', '…', '№', 8],59Quote: ['\'', '"', 'æ', 'Æ', 0],60Backquote: ['`', '~', '`', '̀', 4],61Comma: [',', '<', '≤', '„', 0],62Period: ['.', '>', '≥', 'ʔ', 8],63Slash: ['/', '?', '÷', '¿', 0],64CapsLock: [],65F1: [],66F2: [],67F3: [],68F4: [],69F5: [],70F6: [],71F7: [],72F8: [],73F9: [],74F10: [],75F11: [],76F12: [],77Insert: [],78Home: [],79PageUp: [],80Delete: [],81End: [],82PageDown: [],83ArrowRight: [],84ArrowLeft: [],85ArrowDown: [],86ArrowUp: [],87NumLock: [],88NumpadDivide: ['/', '/', '/', '/', 0],89NumpadMultiply: ['*', '*', '*', '*', 0],90NumpadSubtract: ['-', '-', '-', '-', 0],91NumpadAdd: ['+', '+', '+', '+', 0],92NumpadEnter: [],93Numpad1: ['1', '1', '1', '1', 0],94Numpad2: ['2', '2', '2', '2', 0],95Numpad3: ['3', '3', '3', '3', 0],96Numpad4: ['4', '4', '4', '4', 0],97Numpad5: ['5', '5', '5', '5', 0],98Numpad6: ['6', '6', '6', '6', 0],99Numpad7: ['7', '7', '7', '7', 0],100Numpad8: ['8', '8', '8', '8', 0],101Numpad9: ['9', '9', '9', '9', 0],102Numpad0: ['0', '0', '0', '0', 0],103NumpadDecimal: ['.', '.', '.', '.', 0],104IntlBackslash: ['§', '±', '§', '±', 0],105ContextMenu: [],106NumpadEqual: ['=', '=', '=', '=', 0],107F13: [],108F14: [],109F15: [],110F16: [],111F17: [],112F18: [],113F19: [],114F20: [],115AudioVolumeMute: [],116AudioVolumeUp: ['', '=', '', '=', 0],117AudioVolumeDown: [],118NumpadComma: [],119IntlRo: [],120KanaMode: [],121IntlYen: [],122ControlLeft: [],123ShiftLeft: [],124AltLeft: [],125MetaLeft: [],126ControlRight: [],127ShiftRight: [],128AltRight: [],129MetaRight: []130}131});132133