f31311fd737107ea46762e510c5b4c3a3117c1fe9f520ef78d8f30518d3c506a256d5347755468f6af76322c70e3508ac0495cd7159d0be31a6eea83c98f9a 730 B

12345678
  1. /*---------------------------------------------------------------------------------------------
  2. * Copyright (c) Microsoft Corporation. All rights reserved.
  3. * Licensed under the MIT License. See License.txt in the project root for license information.
  4. *--------------------------------------------------------------------------------------------*/
  5. export function showHistoryKeybindingHint(keybindingService) {
  6. var _a, _b;
  7. return ((_a = keybindingService.lookupKeybinding('history.showPrevious')) === null || _a === void 0 ? void 0 : _a.getElectronAccelerator()) === 'Up' && ((_b = keybindingService.lookupKeybinding('history.showNext')) === null || _b === void 0 ? void 0 : _b.getElectronAccelerator()) === 'Down';
  8. }