mirror of
https://github.com/coder/code-server.git
synced 2026-05-06 04:25:19 +02:00
20 lines
1.1 KiB
TypeScript
20 lines
1.1 KiB
TypeScript
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the MIT License. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
|
|
import { RawContextKey } from 'vs/platform/contextkey/common/contextkey';
|
|
import { isMacintosh, isLinux, isWindows, isWeb } from 'vs/base/common/platform';
|
|
|
|
export const IsMacContext = new RawContextKey<boolean>('isMac', isMacintosh);
|
|
export const IsLinuxContext = new RawContextKey<boolean>('isLinux', isLinux);
|
|
export const IsWindowsContext = new RawContextKey<boolean>('isWindows', isWindows);
|
|
|
|
export const IsWebContext = new RawContextKey<boolean>('isWeb', isWeb);
|
|
export const IsMacNativeContext = new RawContextKey<boolean>('isMacNative', isMacintosh && !isWeb);
|
|
|
|
export const IsDevelopmentContext = new RawContextKey<boolean>('isDevelopment', false);
|
|
|
|
export const InputFocusedContextKey = 'inputFocus';
|
|
export const InputFocusedContext = new RawContextKey<boolean>(InputFocusedContextKey, false);
|