This commit is contained in:
azure-pipelines[bot] 2023-05-02 13:38:05 +00:00
parent 5496df16a1
commit 7d2a6f4738
1068 changed files with 19384 additions and 12926 deletions

View file

@ -1,5 +1,19 @@
# Monaco Editor Changelog
## [0.38.0]
- `diffAlgorithm` values changed: `smart` -> `legacy`, `experimental` -> `advanced`
- New `registerEditorOpener` API
- New property `IViewZone.showInHiddenAreas` to show view zones in hidden areas
- New properties `InlineCompletions.suppressSuggestions` and `InlineCompletions.enableForwardStability`
- Bugfixes
Contributions to `monaco-editor`:
- [@dneto0 (David Neto)](https://github.com/dneto0): Add WebGPU Shading Language tokenizer, with tests [PR #3884](https://github.com/microsoft/monaco-editor/pull/3884)
- [@kisstkondoros (Tamas Kiss)](https://github.com/kisstkondoros): Fix reference error in convert method of OutlineAdapter [PR #3924](https://github.com/microsoft/monaco-editor/pull/3924)
- [@tamayika](https://github.com/tamayika): Change moduleResolution to node16 and adopt TS 5.0 [PR #3860](https://github.com/microsoft/monaco-editor/pull/3860)
## [0.37.1]
- Fixes Inline Completions feature

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

View file

@ -1,6 +1,6 @@
/*!-----------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773)
* Version: 0.38.0(0e330ae453813de4e6cf272460fb79c7117073d0)
* Released under the MIT license
* https://github.com/microsoft/vscode/blob/main/LICENSE.txt
*-----------------------------------------------------------*/

View file

@ -1,6 +1,6 @@
/*!-----------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773)
* Version: 0.38.0(0e330ae453813de4e6cf272460fb79c7117073d0)
* Released under the MIT license
* https://github.com/microsoft/vscode/blob/main/LICENSE.txt
*-----------------------------------------------------------*/

View file

@ -1,6 +1,6 @@
/*!-----------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773)
* Version: 0.38.0(0e330ae453813de4e6cf272460fb79c7117073d0)
* Released under the MIT license
* https://github.com/microsoft/vscode/blob/main/LICENSE.txt
*-----------------------------------------------------------*/

View file

@ -1,6 +1,6 @@
/*!-----------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773)
* Version: 0.38.0(0e330ae453813de4e6cf272460fb79c7117073d0)
* Released under the MIT license
* https://github.com/microsoft/vscode/blob/main/LICENSE.txt
*-----------------------------------------------------------*/

View file

@ -1,6 +1,6 @@
/*!-----------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773)
* Version: 0.38.0(0e330ae453813de4e6cf272460fb79c7117073d0)
* Released under the MIT license
* https://github.com/microsoft/vscode/blob/main/LICENSE.txt
*-----------------------------------------------------------*/

View file

@ -1,6 +1,6 @@
/*!-----------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773)
* Version: 0.38.0(0e330ae453813de4e6cf272460fb79c7117073d0)
* Released under the MIT license
* https://github.com/microsoft/vscode/blob/main/LICENSE.txt
*-----------------------------------------------------------*/

View file

@ -1,6 +1,6 @@
/*!-----------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773)
* Version: 0.38.0(0e330ae453813de4e6cf272460fb79c7117073d0)
* Released under the MIT license
* https://github.com/microsoft/vscode/blob/main/LICENSE.txt
*-----------------------------------------------------------*/

View file

@ -1,6 +1,6 @@
/*!-----------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773)
* Version: 0.38.0(0e330ae453813de4e6cf272460fb79c7117073d0)
* Released under the MIT license
* https://github.com/microsoft/vscode/blob/main/LICENSE.txt
*-----------------------------------------------------------*/

View file

@ -1,6 +1,6 @@
/*!-----------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773)
* Version: 0.38.0(0e330ae453813de4e6cf272460fb79c7117073d0)
* Released under the MIT license
* https://github.com/microsoft/vscode/blob/main/LICENSE.txt
*-----------------------------------------------------------*/

View file

@ -1,6 +1,6 @@
/*!-----------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773)
* Version: 0.38.0(0e330ae453813de4e6cf272460fb79c7117073d0)
* Released under the MIT license
* https://github.com/microsoft/vscode/blob/main/LICENSE.txt
*-----------------------------------------------------------*/

File diff suppressed because it is too large Load diff

File diff suppressed because one or more lines are too long

View file

@ -1,7 +1,7 @@
"use strict";
/*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773)
* Version: 0.38.0(0e330ae453813de4e6cf272460fb79c7117073d0)
* Released under the MIT license
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
*-----------------------------------------------------------------------------*/

View file

@ -1,7 +1,7 @@
"use strict";
/*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773)
* Version: 0.38.0(0e330ae453813de4e6cf272460fb79c7117073d0)
* Released under the MIT license
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
*-----------------------------------------------------------------------------*/

View file

@ -1,7 +1,7 @@
"use strict";
/*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773)
* Version: 0.38.0(0e330ae453813de4e6cf272460fb79c7117073d0)
* Released under the MIT license
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
*-----------------------------------------------------------------------------*/

View file

@ -1,7 +1,7 @@
"use strict";
/*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773)
* Version: 0.38.0(0e330ae453813de4e6cf272460fb79c7117073d0)
* Released under the MIT license
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
*-----------------------------------------------------------------------------*/

View file

@ -1,7 +1,7 @@
"use strict";
/*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773)
* Version: 0.38.0(0e330ae453813de4e6cf272460fb79c7117073d0)
* Released under the MIT license
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
*-----------------------------------------------------------------------------*/

View file

@ -1,7 +1,7 @@
"use strict";
/*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773)
* Version: 0.38.0(0e330ae453813de4e6cf272460fb79c7117073d0)
* Released under the MIT license
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
*-----------------------------------------------------------------------------*/

View file

@ -1,7 +1,7 @@
"use strict";
/*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773)
* Version: 0.38.0(0e330ae453813de4e6cf272460fb79c7117073d0)
* Released under the MIT license
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
*-----------------------------------------------------------------------------*/

View file

@ -1,7 +1,7 @@
"use strict";
/*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773)
* Version: 0.38.0(0e330ae453813de4e6cf272460fb79c7117073d0)
* Released under the MIT license
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
*-----------------------------------------------------------------------------*/

View file

@ -1,7 +1,7 @@
"use strict";
/*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773)
* Version: 0.38.0(0e330ae453813de4e6cf272460fb79c7117073d0)
* Released under the MIT license
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
*-----------------------------------------------------------------------------*/

View file

@ -1,7 +1,7 @@
"use strict";
/*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773)
* Version: 0.38.0(0e330ae453813de4e6cf272460fb79c7117073d0)
* Released under the MIT license
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
*-----------------------------------------------------------------------------*/

View file

@ -1,7 +1,7 @@
"use strict";
/*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773)
* Version: 0.38.0(0e330ae453813de4e6cf272460fb79c7117073d0)
* Released under the MIT license
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
*-----------------------------------------------------------------------------*/

View file

@ -1,7 +1,7 @@
"use strict";
/*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773)
* Version: 0.38.0(0e330ae453813de4e6cf272460fb79c7117073d0)
* Released under the MIT license
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
*-----------------------------------------------------------------------------*/

View file

@ -1,7 +1,7 @@
"use strict";
/*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773)
* Version: 0.38.0(0e330ae453813de4e6cf272460fb79c7117073d0)
* Released under the MIT license
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
*-----------------------------------------------------------------------------*/

View file

@ -1,7 +1,7 @@
"use strict";
/*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773)
* Version: 0.38.0(0e330ae453813de4e6cf272460fb79c7117073d0)
* Released under the MIT license
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
*-----------------------------------------------------------------------------*/

View file

@ -1,7 +1,7 @@
"use strict";
/*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773)
* Version: 0.38.0(0e330ae453813de4e6cf272460fb79c7117073d0)
* Released under the MIT license
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
*-----------------------------------------------------------------------------*/

View file

@ -1,7 +1,7 @@
"use strict";
/*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773)
* Version: 0.38.0(0e330ae453813de4e6cf272460fb79c7117073d0)
* Released under the MIT license
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
*-----------------------------------------------------------------------------*/

View file

@ -1,7 +1,7 @@
"use strict";
/*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773)
* Version: 0.38.0(0e330ae453813de4e6cf272460fb79c7117073d0)
* Released under the MIT license
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
*-----------------------------------------------------------------------------*/

View file

@ -1,7 +1,7 @@
"use strict";
/*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773)
* Version: 0.38.0(0e330ae453813de4e6cf272460fb79c7117073d0)
* Released under the MIT license
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
*-----------------------------------------------------------------------------*/

View file

@ -1,7 +1,7 @@
"use strict";
/*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773)
* Version: 0.38.0(0e330ae453813de4e6cf272460fb79c7117073d0)
* Released under the MIT license
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
*-----------------------------------------------------------------------------*/

View file

@ -1,7 +1,7 @@
"use strict";
/*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773)
* Version: 0.38.0(0e330ae453813de4e6cf272460fb79c7117073d0)
* Released under the MIT license
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
*-----------------------------------------------------------------------------*/

View file

@ -1,7 +1,7 @@
"use strict";
/*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773)
* Version: 0.38.0(0e330ae453813de4e6cf272460fb79c7117073d0)
* Released under the MIT license
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
*-----------------------------------------------------------------------------*/

View file

@ -1,7 +1,7 @@
"use strict";
/*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773)
* Version: 0.38.0(0e330ae453813de4e6cf272460fb79c7117073d0)
* Released under the MIT license
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
*-----------------------------------------------------------------------------*/

View file

@ -1,7 +1,7 @@
"use strict";
/*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773)
* Version: 0.38.0(0e330ae453813de4e6cf272460fb79c7117073d0)
* Released under the MIT license
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
*-----------------------------------------------------------------------------*/

View file

@ -1,7 +1,7 @@
"use strict";
/*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773)
* Version: 0.38.0(0e330ae453813de4e6cf272460fb79c7117073d0)
* Released under the MIT license
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
*-----------------------------------------------------------------------------*/

View file

@ -1,7 +1,7 @@
"use strict";
/*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773)
* Version: 0.38.0(0e330ae453813de4e6cf272460fb79c7117073d0)
* Released under the MIT license
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
*-----------------------------------------------------------------------------*/

View file

@ -1,7 +1,7 @@
"use strict";
/*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773)
* Version: 0.38.0(0e330ae453813de4e6cf272460fb79c7117073d0)
* Released under the MIT license
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
*-----------------------------------------------------------------------------*/

View file

@ -1,7 +1,7 @@
"use strict";
/*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773)
* Version: 0.38.0(0e330ae453813de4e6cf272460fb79c7117073d0)
* Released under the MIT license
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
*-----------------------------------------------------------------------------*/

View file

@ -1,7 +1,7 @@
"use strict";
/*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773)
* Version: 0.38.0(0e330ae453813de4e6cf272460fb79c7117073d0)
* Released under the MIT license
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
*-----------------------------------------------------------------------------*/

View file

@ -1,7 +1,7 @@
"use strict";
/*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773)
* Version: 0.38.0(0e330ae453813de4e6cf272460fb79c7117073d0)
* Released under the MIT license
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
*-----------------------------------------------------------------------------*/

View file

@ -1,7 +1,7 @@
"use strict";
/*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773)
* Version: 0.38.0(0e330ae453813de4e6cf272460fb79c7117073d0)
* Released under the MIT license
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
*-----------------------------------------------------------------------------*/

View file

@ -1,7 +1,7 @@
"use strict";
/*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773)
* Version: 0.38.0(0e330ae453813de4e6cf272460fb79c7117073d0)
* Released under the MIT license
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
*-----------------------------------------------------------------------------*/

View file

@ -1,7 +1,7 @@
"use strict";
/*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773)
* Version: 0.38.0(0e330ae453813de4e6cf272460fb79c7117073d0)
* Released under the MIT license
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
*-----------------------------------------------------------------------------*/

View file

@ -1,7 +1,7 @@
"use strict";
/*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773)
* Version: 0.38.0(0e330ae453813de4e6cf272460fb79c7117073d0)
* Released under the MIT license
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
*-----------------------------------------------------------------------------*/

View file

@ -1,7 +1,7 @@
"use strict";
/*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773)
* Version: 0.38.0(0e330ae453813de4e6cf272460fb79c7117073d0)
* Released under the MIT license
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
*-----------------------------------------------------------------------------*/

View file

@ -1,7 +1,7 @@
"use strict";
/*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773)
* Version: 0.38.0(0e330ae453813de4e6cf272460fb79c7117073d0)
* Released under the MIT license
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
*-----------------------------------------------------------------------------*/

View file

@ -1,7 +1,7 @@
"use strict";
/*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773)
* Version: 0.38.0(0e330ae453813de4e6cf272460fb79c7117073d0)
* Released under the MIT license
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
*-----------------------------------------------------------------------------*/

View file

@ -1,7 +1,7 @@
"use strict";
/*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773)
* Version: 0.38.0(0e330ae453813de4e6cf272460fb79c7117073d0)
* Released under the MIT license
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
*-----------------------------------------------------------------------------*/

View file

@ -1,7 +1,7 @@
"use strict";
/*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773)
* Version: 0.38.0(0e330ae453813de4e6cf272460fb79c7117073d0)
* Released under the MIT license
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
*-----------------------------------------------------------------------------*/

View file

@ -1,7 +1,7 @@
"use strict";
/*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773)
* Version: 0.38.0(0e330ae453813de4e6cf272460fb79c7117073d0)
* Released under the MIT license
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
*-----------------------------------------------------------------------------*/

View file

@ -1,7 +1,7 @@
"use strict";
/*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773)
* Version: 0.38.0(0e330ae453813de4e6cf272460fb79c7117073d0)
* Released under the MIT license
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
*-----------------------------------------------------------------------------*/

View file

@ -1,7 +1,7 @@
"use strict";
/*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773)
* Version: 0.38.0(0e330ae453813de4e6cf272460fb79c7117073d0)
* Released under the MIT license
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
*-----------------------------------------------------------------------------*/

View file

@ -1,7 +1,7 @@
"use strict";
/*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773)
* Version: 0.38.0(0e330ae453813de4e6cf272460fb79c7117073d0)
* Released under the MIT license
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
*-----------------------------------------------------------------------------*/

View file

@ -1,7 +1,7 @@
"use strict";
/*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773)
* Version: 0.38.0(0e330ae453813de4e6cf272460fb79c7117073d0)
* Released under the MIT license
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
*-----------------------------------------------------------------------------*/

View file

@ -1,7 +1,7 @@
"use strict";
/*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773)
* Version: 0.38.0(0e330ae453813de4e6cf272460fb79c7117073d0)
* Released under the MIT license
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
*-----------------------------------------------------------------------------*/

View file

@ -1,7 +1,7 @@
"use strict";
/*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773)
* Version: 0.38.0(0e330ae453813de4e6cf272460fb79c7117073d0)
* Released under the MIT license
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
*-----------------------------------------------------------------------------*/

View file

@ -1,7 +1,7 @@
"use strict";
/*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773)
* Version: 0.38.0(0e330ae453813de4e6cf272460fb79c7117073d0)
* Released under the MIT license
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
*-----------------------------------------------------------------------------*/

View file

@ -1,7 +1,7 @@
"use strict";
/*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773)
* Version: 0.38.0(0e330ae453813de4e6cf272460fb79c7117073d0)
* Released under the MIT license
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
*-----------------------------------------------------------------------------*/

View file

@ -1,7 +1,7 @@
"use strict";
/*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773)
* Version: 0.38.0(0e330ae453813de4e6cf272460fb79c7117073d0)
* Released under the MIT license
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
*-----------------------------------------------------------------------------*/

View file

@ -1,7 +1,7 @@
"use strict";
/*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773)
* Version: 0.38.0(0e330ae453813de4e6cf272460fb79c7117073d0)
* Released under the MIT license
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
*-----------------------------------------------------------------------------*/

View file

@ -1,7 +1,7 @@
"use strict";
/*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773)
* Version: 0.38.0(0e330ae453813de4e6cf272460fb79c7117073d0)
* Released under the MIT license
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
*-----------------------------------------------------------------------------*/

View file

@ -1,7 +1,7 @@
"use strict";
/*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773)
* Version: 0.38.0(0e330ae453813de4e6cf272460fb79c7117073d0)
* Released under the MIT license
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
*-----------------------------------------------------------------------------*/

View file

@ -1,7 +1,7 @@
"use strict";
/*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773)
* Version: 0.38.0(0e330ae453813de4e6cf272460fb79c7117073d0)
* Released under the MIT license
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
*-----------------------------------------------------------------------------*/

View file

@ -1,7 +1,7 @@
"use strict";
/*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773)
* Version: 0.38.0(0e330ae453813de4e6cf272460fb79c7117073d0)
* Released under the MIT license
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
*-----------------------------------------------------------------------------*/

View file

@ -1,7 +1,7 @@
"use strict";
/*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773)
* Version: 0.38.0(0e330ae453813de4e6cf272460fb79c7117073d0)
* Released under the MIT license
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
*-----------------------------------------------------------------------------*/

View file

@ -1,7 +1,7 @@
"use strict";
/*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773)
* Version: 0.38.0(0e330ae453813de4e6cf272460fb79c7117073d0)
* Released under the MIT license
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
*-----------------------------------------------------------------------------*/

View file

@ -1,7 +1,7 @@
"use strict";
/*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773)
* Version: 0.38.0(0e330ae453813de4e6cf272460fb79c7117073d0)
* Released under the MIT license
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
*-----------------------------------------------------------------------------*/

View file

@ -1,7 +1,7 @@
"use strict";
/*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773)
* Version: 0.38.0(0e330ae453813de4e6cf272460fb79c7117073d0)
* Released under the MIT license
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
*-----------------------------------------------------------------------------*/

View file

@ -1,7 +1,7 @@
"use strict";
/*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773)
* Version: 0.38.0(0e330ae453813de4e6cf272460fb79c7117073d0)
* Released under the MIT license
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
*-----------------------------------------------------------------------------*/

View file

@ -1,7 +1,7 @@
"use strict";
/*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773)
* Version: 0.38.0(0e330ae453813de4e6cf272460fb79c7117073d0)
* Released under the MIT license
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
*-----------------------------------------------------------------------------*/

View file

@ -1,7 +1,7 @@
"use strict";
/*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773)
* Version: 0.38.0(0e330ae453813de4e6cf272460fb79c7117073d0)
* Released under the MIT license
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
*-----------------------------------------------------------------------------*/

View file

@ -1,7 +1,7 @@
"use strict";
/*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773)
* Version: 0.38.0(0e330ae453813de4e6cf272460fb79c7117073d0)
* Released under the MIT license
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
*-----------------------------------------------------------------------------*/

View file

@ -1,7 +1,7 @@
"use strict";
/*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773)
* Version: 0.38.0(0e330ae453813de4e6cf272460fb79c7117073d0)
* Released under the MIT license
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
*-----------------------------------------------------------------------------*/

View file

@ -1,7 +1,7 @@
"use strict";
/*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773)
* Version: 0.38.0(0e330ae453813de4e6cf272460fb79c7117073d0)
* Released under the MIT license
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
*-----------------------------------------------------------------------------*/

View file

@ -1,7 +1,7 @@
"use strict";
/*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773)
* Version: 0.38.0(0e330ae453813de4e6cf272460fb79c7117073d0)
* Released under the MIT license
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
*-----------------------------------------------------------------------------*/

View file

@ -1,7 +1,7 @@
"use strict";
/*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773)
* Version: 0.38.0(0e330ae453813de4e6cf272460fb79c7117073d0)
* Released under the MIT license
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
*-----------------------------------------------------------------------------*/

View file

@ -1,7 +1,7 @@
"use strict";
/*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773)
* Version: 0.38.0(0e330ae453813de4e6cf272460fb79c7117073d0)
* Released under the MIT license
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
*-----------------------------------------------------------------------------*/

View file

@ -1,7 +1,7 @@
"use strict";
/*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773)
* Version: 0.38.0(0e330ae453813de4e6cf272460fb79c7117073d0)
* Released under the MIT license
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
*-----------------------------------------------------------------------------*/

View file

@ -1,7 +1,7 @@
"use strict";
/*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773)
* Version: 0.38.0(0e330ae453813de4e6cf272460fb79c7117073d0)
* Released under the MIT license
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
*-----------------------------------------------------------------------------*/

View file

@ -1,7 +1,7 @@
"use strict";
/*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773)
* Version: 0.38.0(0e330ae453813de4e6cf272460fb79c7117073d0)
* Released under the MIT license
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
*-----------------------------------------------------------------------------*/

View file

@ -1,7 +1,7 @@
"use strict";
/*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773)
* Version: 0.38.0(0e330ae453813de4e6cf272460fb79c7117073d0)
* Released under the MIT license
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
*-----------------------------------------------------------------------------*/

View file

@ -1,7 +1,7 @@
"use strict";
/*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773)
* Version: 0.38.0(0e330ae453813de4e6cf272460fb79c7117073d0)
* Released under the MIT license
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
*-----------------------------------------------------------------------------*/

View file

@ -1,7 +1,7 @@
"use strict";
/*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773)
* Version: 0.38.0(0e330ae453813de4e6cf272460fb79c7117073d0)
* Released under the MIT license
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
*-----------------------------------------------------------------------------*/

View file

@ -1,7 +1,7 @@
"use strict";
/*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773)
* Version: 0.38.0(0e330ae453813de4e6cf272460fb79c7117073d0)
* Released under the MIT license
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
*-----------------------------------------------------------------------------*/

View file

@ -1,7 +1,7 @@
"use strict";
/*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773)
* Version: 0.38.0(0e330ae453813de4e6cf272460fb79c7117073d0)
* Released under the MIT license
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
*-----------------------------------------------------------------------------*/

View file

@ -1,7 +1,7 @@
"use strict";
/*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773)
* Version: 0.38.0(0e330ae453813de4e6cf272460fb79c7117073d0)
* Released under the MIT license
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
*-----------------------------------------------------------------------------*/

View file

@ -1,7 +1,7 @@
"use strict";
/*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773)
* Version: 0.38.0(0e330ae453813de4e6cf272460fb79c7117073d0)
* Released under the MIT license
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
*-----------------------------------------------------------------------------*/

View file

@ -1,7 +1,7 @@
"use strict";
/*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773)
* Version: 0.38.0(0e330ae453813de4e6cf272460fb79c7117073d0)
* Released under the MIT license
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
*-----------------------------------------------------------------------------*/

View file

@ -1,7 +1,7 @@
"use strict";
/*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773)
* Version: 0.38.0(0e330ae453813de4e6cf272460fb79c7117073d0)
* Released under the MIT license
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
*-----------------------------------------------------------------------------*/

View file

@ -1,7 +1,7 @@
"use strict";
/*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773)
* Version: 0.38.0(0e330ae453813de4e6cf272460fb79c7117073d0)
* Released under the MIT license
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
*-----------------------------------------------------------------------------*/

View file

@ -1,6 +1,6 @@
/*!-----------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773)
* Version: 0.38.0(0e330ae453813de4e6cf272460fb79c7117073d0)
* Released under the MIT license
* https://github.com/microsoft/vscode/blob/main/LICENSE.txt
*-----------------------------------------------------------*/
@ -1908,7 +1908,6 @@
position: absolute;
display: flex;
align-items: center;
justify-content: center;
}
/*---------------------------------------------------------------------------------------------
@ -2784,7 +2783,7 @@
}
.colorpicker-header .picked-color {
width: 216px;
width: 240px;
display: flex;
align-items: center;
justify-content: center;
@ -2811,6 +2810,35 @@
cursor: pointer;
}
.standalone-colorpicker {
color: var(--vscode-editorHoverWidget-foreground);
background-color: var(--vscode-editorHoverWidget-background);
border: 1px solid var(--vscode-editorHoverWidget-border);
}
.colorpicker-header.standalone-colorpicker {
border-bottom: none;
}
.colorpicker-header .close-button {
cursor: pointer;
background-color: var(--vscode-editorHoverWidget-background);
border-left: 1px solid var(--vscode-editorHoverWidget-border);
}
.colorpicker-header .close-button-inner-div {
width: 100%;
height: 100%;
text-align: center;
}
.colorpicker-header .close-button-inner-div:hover {
background-color: var(--vscode-toolbar-hoverBackground);
}
.colorpicker-header .close-icon {
padding: 3px;
}
/* Body */
@ -2848,6 +2876,11 @@
height: 150px;
}
.colorpicker-body .standalone-strip {
width: 25px;
height: 122px;
}
.colorpicker-body .hue-strip {
position: relative;
margin-left: 8px;
@ -2884,6 +2917,35 @@
pointer-events: none;
}
.colorpicker-body .standalone-strip .standalone-overlay {
height: 122px;
pointer-events: none;
}
.standalone-colorpicker-body {
display: block;
border: 1px solid transparent;
border-bottom: 1px solid var(--vscode-editorHoverWidget-border);
overflow: hidden;
}
.colorpicker-body .insert-button {
height: 20px;
width: 58px;
position: absolute;
right: 8px;
bottom: 8px;
background: var(--vscode-button-background);
color: var(--vscode-button-foreground);
border-radius: 2px;
border: none;
cursor: pointer;
}
.colorpicker-body .insert-button:hover{
background: var(--vscode-button-hoverBackground);
}
/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
@ -2916,6 +2978,33 @@
cursor: copy;
}
/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
.post-drop-widget {
box-shadow: 0 0 8px 2px var(--vscode-widget-shadow);
border: 1px solid var(--vscode-widget-border, transparent);
border-radius: 4px;
background-color: var(--vscode-editorWidget-background);
overflow: hidden;
}
.post-drop-widget .monaco-button {
padding: 2px;
border: none;
border-radius: 0;
}
.post-drop-widget .monaco-button:hover {
background-color: var(--vscode-button-secondaryHoverBackground) !important;
}
.post-drop-widget .monaco-button .codicon {
margin: 0;
}
/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
@ -3458,11 +3547,7 @@
font-size: 0;
}
.monaco-editor .ghost-text-decoration {
font-style: italic;
}
.monaco-editor .suggest-preview-text {
.monaco-editor .ghost-text-decoration, .monaco-editor .suggest-preview-text .ghost-text {
font-style: italic;
}
@ -3520,6 +3605,36 @@
margin-right: 2px;
}
/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
.inline-editor-progress-decoration {
display: inline-block;
width: 1em;
height: 1em;
}
.inline-progress-widget {
display: flex !important;
justify-content: center;
align-items: center;
}
.inline-progress-widget .icon {
font-size: 80% !important;
}
.inline-progress-widget:hover .icon {
font-size: 90% !important;
animation: none;
}
.inline-progress-widget:hover .icon::before {
content: "\ea76"; /* codicon-x */
}
/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
@ -3527,7 +3642,9 @@
.monaco-editor .linked-editing-decoration {
background-color: var(--vscode-editor-linkedEditingBackground);
border-left-color: var(--vscode-editor-linkedEditingBackground);
/* Ensure decoration is visible even if range is empty */
min-width: 1px;
}
/*---------------------------------------------------------------------------------------------

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View file

@ -1,6 +1,6 @@
/*!-----------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773)
* Version: 0.38.0(0e330ae453813de4e6cf272460fb79c7117073d0)
* Released under the MIT license
* https://github.com/microsoft/vscode/blob/main/LICENSE.txt
*-----------------------------------------------------------*/
@ -29,6 +29,7 @@ define("vs/editor/editor.main.nls.de", {
"Warnung: {0}",
"Info: {0}",
"für Verlauf",
"Gelöschte Eingabe",
],
"vs/base/browser/ui/keybindingLabel/keybindingLabel": [
"Ungebunden",
@ -110,6 +111,7 @@ define("vs/editor/editor.main.nls.de", {
"Zeilenformatierung für Entfernungen im Diff-Editor",
" verwenden Sie UMSCHALT+F7, um durch Änderungen zu navigieren.",
"Kann die Dateien nicht vergleichen, da eine Datei zu groß ist.",
"Klicken Sie, um die Änderung rückgängig zu machen",
],
"vs/editor/browser/widget/diffReview": [
"Symbol für \"Einfügen\" in der Diff-Überprüfung.",
@ -160,7 +162,7 @@ define("vs/editor/editor.main.nls.de", {
"Zeilen, die diese Länge überschreiten, werden aus Leistungsgründen nicht tokenisiert",
"Steuert, ob die Tokenisierung asynchron auf einem Webworker erfolgen soll.",
"Steuert, ob die asynchrone Tokenisierung protokolliert werden soll. Nur zum Debuggen.",
"Controls whether async tokenization should be verified against legacy background tokenization. Might slow down tokenization. For debugging only.",
"Steuert, ob die asynchrone Tokenisierung anhand der Legacy-Hintergrundtokenisierung überprüft werden soll. Die Tokenisierung kann verlangsamt werden. Nur zum Debuggen.",
"Definiert die Klammersymbole, die den Einzug vergrößern oder verkleinern.",
"Das öffnende Klammerzeichen oder die Zeichenfolgensequenz.",
"Das schließende Klammerzeichen oder die Zeichenfolgensequenz.",
@ -177,8 +179,8 @@ define("vs/editor/editor.main.nls.de", {
"Zeilenumbrüche erfolgen nie.",
"Der Zeilenumbruch erfolgt an der Breite des Anzeigebereichs.",
"Zeilen werden gemäß der Einstellung „{0}“ umbrochen.",
"Verwendet den Standardvergleichsalgorithmus.",
"Verwendet einen experimentellen Vergleichsalgorithmus.",
"Verwendet den Legacyvergleichsalgorithmus.",
"Verwendet den erweiterten Vergleichsalgorithmus.",
],
"vs/editor/common/config/editorOptions": [
"Plattform-APIs verwenden, um zu erkennen, wenn eine Sprachausgabe angefügt ist",
@ -367,6 +369,9 @@ define("vs/editor/editor.main.nls.de", {
"Umgebrochene Zeilen werden im Vergleich zum übergeordneten Element +2 eingerückt.",
"Steuert die Einrückung der umbrochenen Zeilen.",
"Steuert, ob Sie eine Datei in einen Editor ziehen und ablegen können, indem Sie die UMSCHALTTASTE gedrückt halten (anstatt die Datei in einem Editor zu öffnen).",
"Steuert, ob beim Ablegen von Dateien im Editor ein Widget angezeigt wird. Mit diesem Widget können Sie steuern, wie die Datei ablegt wird.",
"Zeigt das Widget für die Dropdownauswahl an, nachdem eine Datei im Editor abgelegt wurde.",
"Das Widget für die Ablageauswahl wird nie angezeigt. Stattdessen wird immer der Standardablageanbieter verwendet.",
"Steuert, ob Vorschläge über Commitzeichen angenommen werden sollen. In JavaScript kann ein Semikolon (\";\") beispielsweise ein Commitzeichen sein, das einen Vorschlag annimmt und dieses Zeichen eingibt.",
"Einen Vorschlag nur mit der EINGABETASTE akzeptieren, wenn dieser eine Änderung am Text vornimmt.",
"Steuert, ob Vorschläge mit der EINGABETASTE (zusätzlich zur TAB-Taste) akzeptiert werden sollen. Vermeidet Mehrdeutigkeit zwischen dem Einfügen neuer Zeilen oder dem Annehmen von Vorschlägen.",
@ -507,6 +512,7 @@ define("vs/editor/editor.main.nls.de", {
"Der Zeilenumbruch erfolgt beim Mindestanzeigebereich und \"#editor.wordWrapColumn\".",
"Steuert, wie der Zeilenumbruch durchgeführt werden soll.",
"Steuert die umschließende Spalte des Editors, wenn \"#editor.wordWrap#\" den Wert \"wordWrapColumn\" oder \"bounded\" aufweist.",
"Steuert, ob Inlinefarbdekorationen mithilfe des Standard-Dokumentfarbanbieters angezeigt werden sollen.",
"Steuert, ob der Editor Registerkarten empfängt oder zur Navigation zur Workbench zurückgibt.",
],
"vs/editor/common/core/editorColorRegistry": [
@ -578,6 +584,8 @@ define("vs/editor/editor.main.nls.de", {
"Gibt an, ob Daraufzeigen im Editor fokussiert ist.",
"Gibt an, ob der Fokus auf dem Fixierten Bildlauf liegt.",
"Gibt an, ob der Fixierte Bildlauf sichtbar ist.",
"Gibt an, ob der eigenständige Farbwähler sichtbar ist.",
"Gibt an, ob der eigenständige Farbwähler fokussiert ist.",
"Gibt an, ob der Editor Bestandteil eines größeren Editors ist (z. B. Notebooks).",
"Der Sprachbezeichner des Editors.",
"Gibt an, ob der Editor über einen Vervollständigungselementanbieter verfügt.",
@ -629,6 +637,7 @@ define("vs/editor/editor.main.nls.de", {
"Drücken Sie STRG + H, um ein Browserfenster mit weiteren Informationen zur Barrierefreiheit des Editors zu öffnen.",
"Sie können diese QuickInfo schließen und durch Drücken von ESC oder UMSCHALT+ESC zum Editor zurückkehren.",
"Hilfe zur Barrierefreiheit anzeigen",
"Hilfe zur Barrierefreiheit",
"Entwickler: Token überprüfen",
"Gehe zu Zeile/Spalte...",
"Alle Anbieter für den Schnellzugriff anzeigen",
@ -747,6 +756,13 @@ define("vs/editor/editor.main.nls.de", {
],
"vs/editor/contrib/colorPicker/browser/colorPickerWidget": [
"Zum Umschalten zwischen Farboptionen (rgb/hsl/hex) klicken",
"Symbol zum Schließen des Farbwählers",
],
"vs/editor/contrib/colorPicker/browser/standaloneColorPickerActions": [
"Eigenständige Farbwähler anzeigen oder konzentrieren",
"&&Eigenständige Farbwähler anzeigen oder fokussieren",
"Farbwähler ausblenden",
"Farbe mit eigenständigem Farbwähler einfügen",
],
"vs/editor/contrib/comment/browser/comment": [
"Zeilenkommentar umschalten",
@ -772,14 +788,28 @@ define("vs/editor/editor.main.nls.de", {
"Aktivieren/Deaktivieren der Ausführung von Bearbeitungen von Erweiterungen beim Einfügen.",
],
"vs/editor/contrib/copyPaste/browser/copyPasteController": [
"Einfügehandler werden ausgeführt...",
"Einfügehandler werden ausgeführt. Klicken Sie hier, um den Vorgang abzubrechen.",
],
"vs/editor/contrib/cursorUndo/browser/cursorUndo": [
"Mit Cursor rückgängig machen",
"Wiederholen mit Cursor",
],
"vs/editor/contrib/dropIntoEditor/browser/defaultOnDropProviders": [
"Nur-Text einfügen",
"URI einfügen",
"URI einfügen",
"Pfade einfügen",
"Pfad einfügen",
"Relative Pfade einfügen",
"Relativen Pfad einfügen",
],
"vs/editor/contrib/dropIntoEditor/browser/dropIntoEditorContribution": [
"Drophandler werden ausgeführt...",
"Drophandler werden ausgeführt. Klicken Sie hier, um den Vorgang abzubrechen.",
],
"vs/editor/contrib/dropIntoEditor/browser/postDropWidget": [
"Gibt an, ob das Ablagewidget angezeigt wird.",
"Ablageoptionen anzeigen... ({0})",
"Ablageoptionen anzeigen...",
],
"vs/editor/contrib/editorState/browser/keybindingCancellation": [
"Gibt an, ob der Editor einen abbrechbaren Vorgang ausführt, z. B. \"Verweisvorschau\".",
@ -796,6 +826,7 @@ define("vs/editor/editor.main.nls.de", {
"Weitersuchen",
"Vorheriges Element suchen",
"Zu Übereinstimmung wechseln ...",
"Keine Übereinstimmungen. Versuchen Sie, nach etwas anderem zu suchen.",
"Geben Sie eine Zahl ein, um zu einer bestimmten Übereinstimmung zu wechseln (zwischen 1 und {0}).",
"Zahl zwischen 1 und {0} eingeben",
"Zahl zwischen 1 und {0} eingeben",
@ -1028,28 +1059,30 @@ define("vs/editor/editor.main.nls.de", {
"Gehe zu Definition ({0})",
"Befehl ausführen",
],
"vs/editor/contrib/inlineCompletions/browser/ghostTextController": [
"Gibt an, ob ein Inline-Vorschlag sichtbar ist.",
"Gibt an, ob der Inline-Vorschlag mit Leerzeichen beginnt.",
"Ob der Inline-Vorschlag mit Leerzeichen beginnt, das kleiner ist als das, was durch die Tabulatortaste eingefügt werden würde",
"Gibt an, ob ein Inlinevorschlag rückgängig machen würde.",
"Gibt an, ob die Symbolleiste „Inline-Vorschlag“ immer sichtbar sein soll.",
"vs/editor/contrib/inlineCompletions/browser/commands": [
"Nächsten Inline-Vorschlag anzeigen",
"Vorherigen Inline-Vorschlag anzeigen",
"Inline-Vorschlag auslösen",
"Nächstes Wort des Inline-Vorschlags annehmen",
"Wort annehmen",
"Nächste Zeile des Inlinevorschlags akzeptieren",
"Zeile annehmen",
"Inline-Vorschlag annehmen",
"Annehmen",
"Inlinevorschlag ausblenden",
"Symbolleiste immer anzeigen",
"\"Wort annehmen\" rückgängig machen",
"\"Wort annehmen\" rückgängig machen",
],
"vs/editor/contrib/inlineCompletions/browser/ghostTextHoverParticipant": [
"vs/editor/contrib/inlineCompletions/browser/hoverParticipant": [
"Vorschlag:",
],
"vs/editor/contrib/inlineCompletions/browser/inlineSuggestionHintsWidget": [
"vs/editor/contrib/inlineCompletions/browser/inlineCompletionContextKeys": [
"Gibt an, ob ein Inline-Vorschlag sichtbar ist.",
"Gibt an, ob der Inline-Vorschlag mit Leerzeichen beginnt.",
"Ob der Inline-Vorschlag mit Leerzeichen beginnt, das kleiner ist als das, was durch die Tabulatortaste eingefügt werden würde",
"Gibt an, ob die Symbolleiste „Inline-Vorschlag“ immer sichtbar sein soll.",
"Gibt an, ob Vorschläge für den aktuellen Vorschlag unterdrückt werden sollen",
],
"vs/editor/contrib/inlineCompletions/browser/inlineCompletionsHintsWidget": [
"Symbol für die Anzeige des nächsten Parameterhinweises.",
"Symbol für die Anzeige des vorherigen Parameterhinweises.",
"{0} ({1})",
@ -1573,10 +1606,10 @@ define("vs/editor/editor.main.nls.de", {
"Info",
],
"vs/platform/quickinput/browser/commandsQuickAccess": [
"{0}, {1}",
"zuletzt verwendet",
"häufig verwendet",
"andere Befehle",
"{0}, {1}",
"Der Befehl \"{0}\" hat zu einem Fehler geführt.",
],
"vs/platform/quickinput/browser/helpQuickAccess": [
@ -1658,15 +1691,15 @@ define("vs/editor/editor.main.nls.de", {
"Hintergrundfarbe des Fortschrittbalkens, der für zeitintensive Vorgänge angezeigt werden kann.",
"Hintergrundfarbe für Fehlertext im Editor. Die Farbe darf nicht deckend sein, weil sie sonst die zugrunde liegenden Dekorationen verdeckt.",
"Vordergrundfarbe von Fehlerunterstreichungen im Editor.",
"Randfarbe von Fehlerfeldern im Editor.",
"Wenn festgelegt, wird die Farbe doppelter Unterstreichungen für Fehler im Editor angezeigt.",
"Hintergrundfarbe für Warnungstext im Editor. Die Farbe darf nicht deckend sein, weil sie sonst die zugrunde liegenden Dekorationen verdeckt.",
"Vordergrundfarbe von Warnungsunterstreichungen im Editor.",
"Randfarbe der Warnfelder im Editor.",
"Wenn festgelegt, wird die Farbe doppelter Unterstreichungen für Warnungen im Editor angezeigt.",
"Hintergrundfarbe für Infotext im Editor. Die Farbe darf nicht deckend sein, weil sie sonst die zugrunde liegenden Dekorationen verdeckt.",
"Vordergrundfarbe von Informationsunterstreichungen im Editor.",
"Randfarbe der Infofelder im Editor.",
"Wenn festgelegt, wird die Farbe doppelter Unterstreichungen für Infos im Editor angezeigt.",
"Vordergrundfarbe der Hinweisunterstreichungen im Editor.",
"Randfarbe der Hinweisfelder im Editor.",
"Wenn festgelegt, wird die Farbe doppelter Unterstreichungen für Hinweise im Editor angezeigt.",
"Rahmenfarbe aktiver Trennleisten.",
"Hintergrundfarbe des Editors.",
"Standardvordergrundfarbe des Editors.",

View file

@ -1,6 +1,6 @@
/*!-----------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773)
* Version: 0.38.0(0e330ae453813de4e6cf272460fb79c7117073d0)
* Released under the MIT license
* https://github.com/microsoft/vscode/blob/main/LICENSE.txt
*-----------------------------------------------------------*/
@ -29,6 +29,7 @@ define("vs/editor/editor.main.nls.es", {
"Advertencia: {0}",
"Información: {0}",
"para el historial",
"Entrada borrada",
],
"vs/base/browser/ui/keybindingLabel/keybindingLabel": [
"Sin enlazar",
@ -110,6 +111,7 @@ define("vs/editor/editor.main.nls.es", {
"Decoración de línea para las eliminaciones en el editor de diferencias.",
" usar Mayús + F7 para navegar por los cambios",
"Los archivos no se pueden comparar porque uno de ellos es demasiado grande.",
"Haga clic para revertir el cambio",
],
"vs/editor/browser/widget/diffReview": [
"Icono para \"Insertar\" en la revisión de diferencias.",
@ -160,7 +162,7 @@ define("vs/editor/editor.main.nls.es", {
"Las lineas por encima de esta longitud no se tokenizarán por razones de rendimiento.",
"Controla si la tokenización debe producirse de forma asincrónica en un rol de trabajo.",
"Controla si se debe registrar la tokenización asincrónica. Solo para depuración.",
"Controls whether async tokenization should be verified against legacy background tokenization. Might slow down tokenization. For debugging only.",
"Controla si se debe comprobar la tokenización asincrónica con la tokenización en segundo plano heredada. Puede ralentizar la tokenización. Solo para depuración.",
"Define los corchetes que aumentan o reducen la sangría.",
"Secuencia de cadena o corchete de apertura.",
"Secuencia de cadena o corchete de cierre.",
@ -177,8 +179,8 @@ define("vs/editor/editor.main.nls.es", {
"Las líneas no se ajustarán nunca.",
"Las líneas se ajustarán en el ancho de la ventanilla.",
"Las líneas se ajustarán en función de la configuración de {0}.",
"Usa el algoritmo de comparación predeterminado.",
"Usa un algoritmo de comparación experimental.",
"Usa el algoritmo de diferenciación heredado.",
"Usa el algoritmo de diferenciación avanzada.",
],
"vs/editor/common/config/editorOptions": [
"Usar las API de la plataforma para detectar cuándo se conecta un lector de pantalla",
@ -367,6 +369,9 @@ define("vs/editor/editor.main.nls.es", {
"A las líneas ajustadas se les aplica una sangría de +2 respecto al elemento primario.",
"Controla la sangría de las líneas ajustadas.",
"Controla si puede arrastrar y colocar un archivo en un editor de texto manteniendo presionada la tecla `mayús` (en lugar de abrir el archivo en un editor).",
"Controla si se muestra un widget al colocar archivos en el editor. Este widget le permite controlar cómo se coloca el archivo.",
"Muestra el widget del selector de colocación después de colocar un archivo en el editor.",
"No mostrar nunca el widget del selector de colocación. En su lugar, siempre se usa el proveedor de colocación predeterminado.",
"Controla si se deben aceptar sugerencias en los caracteres de confirmación. Por ejemplo, en Javascript, el punto y coma (\";\") puede ser un carácter de confirmación que acepta una sugerencia y escribe ese carácter.",
"Aceptar solo una sugerencia con \"Entrar\" cuando realiza un cambio textual.",
"Controla si las sugerencias deben aceptarse con \"Entrar\", además de \"TAB\". Ayuda a evitar la ambigüedad entre insertar nuevas líneas o aceptar sugerencias.",
@ -507,6 +512,7 @@ define("vs/editor/editor.main.nls.es", {
"Las líneas se ajustarán al valor que sea inferior: el tamaño de la ventanilla o el valor de \"#editor.wordWrapColumn#\".",
"Controla cómo deben ajustarse las líneas.",
"Controla la columna de ajuste del editor cuando \"#editor.wordWrap#\" es \"wordWrapColumn\" o \"bounded\".",
"Controla si las decoraciones de color en línea deben mostrarse con el proveedor de colores del documento predeterminado.",
"Controla si el editor recibe las pestañas o las aplaza al área de trabajo para la navegación.",
],
"vs/editor/common/core/editorColorRegistry": [
@ -578,6 +584,8 @@ define("vs/editor/editor.main.nls.es", {
"Si se centra el desplazamiento del editor",
"Si el desplazamiento permanente está centrado",
"Si el desplazamiento permanente está visible",
"Si el selector de colores independiente está visible",
"Si el selector de colores independiente está centrado",
"Si el editor forma parte de otro más grande (por ejemplo, blocs de notas)",
"Identificador de idioma del editor",
"Si el editor tiene un proveedor de elementos de finalización",
@ -629,6 +637,7 @@ define("vs/editor/editor.main.nls.es", {
"Presione ahora Control+H para abrir una ventana del explorador con más información relacionada con la accesibilidad del editor.",
"Para descartar esta información sobre herramientas y volver al editor, presione Esc o Mayús+Escape.",
"Mostrar ayuda de accesibilidad",
"Ayuda de accesibilidad",
"Desarrollador: inspeccionar tokens",
"Vaya a Línea/Columna...",
"Mostrar todos los proveedores de acceso rápido",
@ -747,6 +756,13 @@ define("vs/editor/editor.main.nls.es", {
],
"vs/editor/contrib/colorPicker/browser/colorPickerWidget": [
"Haga clic para alternar las opciones de color (rgb/hsl/hex)",
"Icono para cerrar el selector de colores",
],
"vs/editor/contrib/colorPicker/browser/standaloneColorPickerActions": [
"Mostrar o centrar Selector de colores independientes",
"&Mostrar o centrar Selector de colores independientes",
"Ocultar la Selector de colores",
"Insertar color con Selector de colores independiente",
],
"vs/editor/contrib/comment/browser/comment": [
"Alternar comentario de línea",
@ -772,14 +788,28 @@ define("vs/editor/editor.main.nls.es", {
"Habilita o deshabilita la ejecución de ediciones desde extensiones al pegar.",
],
"vs/editor/contrib/copyPaste/browser/copyPasteController": [
"Ejecutando controladores de pegado...",
"Ejecutando controladores de pegado. Haga clic para cancelar.",
],
"vs/editor/contrib/cursorUndo/browser/cursorUndo": [
"Cursor Deshacer",
"Cursor Rehacer",
],
"vs/editor/contrib/dropIntoEditor/browser/defaultOnDropProviders": [
"Insertar texto sin formato",
"Insertar URIs",
"Insertar URI",
"Insertar rutas de acceso",
"Insertar ruta de acceso",
"Insertar rutas de acceso relativas",
"Insertar ruta de acceso relativa",
],
"vs/editor/contrib/dropIntoEditor/browser/dropIntoEditorContribution": [
"Ejecutando controladores de destino...",
"Ejecutando controladores de colocación. Haga clic para cancelar.",
],
"vs/editor/contrib/dropIntoEditor/browser/postDropWidget": [
"Si se muestra el widget de colocación",
"Mostrar opciones de colocación... ({0})",
"Mostrar opciones de colocación...",
],
"vs/editor/contrib/editorState/browser/keybindingCancellation": [
"Indica si el editor ejecuta una operación que se puede cancelar como, por ejemplo, \"Inspeccionar referencias\"",
@ -796,6 +826,7 @@ define("vs/editor/editor.main.nls.es", {
"Buscar siguiente",
"Buscar anterior",
"Ir a Coincidencia...",
"No hay coincidencias. Intente buscar otra cosa.",
"Escriba un número para ir a una coincidencia específica (entre 1 y {0})",
"Escriba un número entre 1 y {0}",
"Escriba un número entre 1 y {0}",
@ -1028,28 +1059,30 @@ define("vs/editor/editor.main.nls.es", {
"Ir a Definición ({0})",
"Ejecutar comando",
],
"vs/editor/contrib/inlineCompletions/browser/ghostTextController": [
"Si una sugerencia alineada está visible",
"Si la sugerencia alineada comienza con un espacio en blanco",
"Si la sugerencia insertada comienza con un espacio en blanco menor que lo que se insertaría mediante tabulación",
"Si deshacer desharía una sugerencia insertada",
"Indica si la barra de herramientas de sugerencias insertada debe estar siempre visible",
"vs/editor/contrib/inlineCompletions/browser/commands": [
"Mostrar sugerencia alineada siguiente",
"Mostrar sugerencia alineada anterior",
"Desencadenar sugerencia alineada",
"Aceptar la siguiente palabra de sugerencia insertada",
"Aceptar palabra",
"Aceptar la siguiente línea de sugerencia insertada",
"Aceptar línea",
"Aceptar la sugerencia insertada",
"Aceptar",
"Ocultar la sugerencia insertada",
"Mostrar siempre la barra de herramientas",
"Deshacer Aceptar palabra",
"Deshacer Aceptar palabra",
],
"vs/editor/contrib/inlineCompletions/browser/ghostTextHoverParticipant": [
"vs/editor/contrib/inlineCompletions/browser/hoverParticipant": [
"Sugerencia:",
],
"vs/editor/contrib/inlineCompletions/browser/inlineSuggestionHintsWidget": [
"vs/editor/contrib/inlineCompletions/browser/inlineCompletionContextKeys": [
"Si una sugerencia alineada está visible",
"Si la sugerencia alineada comienza con un espacio en blanco",
"Si la sugerencia insertada comienza con un espacio en blanco menor que lo que se insertaría mediante tabulación",
"Indica si la barra de herramientas de sugerencias insertada debe estar siempre visible",
"Si las sugerencias deben suprimirse para la sugerencia actual",
],
"vs/editor/contrib/inlineCompletions/browser/inlineCompletionsHintsWidget": [
"Icono para mostrar la sugerencia de parámetro siguiente.",
"Icono para mostrar la sugerencia de parámetro anterior.",
"{0} ({1})",
@ -1573,10 +1606,10 @@ define("vs/editor/editor.main.nls.es", {
"Información",
],
"vs/platform/quickinput/browser/commandsQuickAccess": [
"{0}, {1}",
"usado recientemente",
"usados habitualmente",
"otros comandos",
"{0}, {1}",
"El comando \"{0}\" ha dado lugar a un error",
],
"vs/platform/quickinput/browser/helpQuickAccess": [
@ -1658,15 +1691,15 @@ define("vs/editor/editor.main.nls.es", {
"Color de fondo para la barra de progreso que se puede mostrar para las operaciones de larga duración.",
"Color de fondo del texto de error del editor. El color no debe ser opaco para no ocultar las decoraciones subyacentes.",
"Color de primer plano de squigglies de error en el editor.",
"Color del borde de los cuadros de error en el editor.",
"Si se establece, color de subrayados dobles para errores en el editor.",
"Color de fondo del texto de advertencia del editor. El color no debe ser opaco para no ocultar las decoraciones subyacentes.",
"Color de primer plano de squigglies de advertencia en el editor.",
"Color del borde de los cuadros de advertencia en el editor.",
"Si se establece, color de subrayados dobles para advertencias en el editor.",
"Color de fondo del texto de información del editor. El color no debe ser opaco para no ocultar las decoraciones subyacentes.",
"Color de primer plano de los subrayados ondulados informativos en el editor.",
"Color del borde de los cuadros de información en el editor.",
"Si se establece, color de subrayados dobles para informaciones en el editor.",
"Color de primer plano de pista squigglies en el editor.",
"Color del borde de los cuadros de sugerencia en el editor.",
"Si se establece, color de subrayados dobles para sugerencias en el editor.",
"Color de borde de los marcos activos.",
"Color de fondo del editor.",
"Color de primer plano predeterminado del editor.",

View file

@ -1,6 +1,6 @@
/*!-----------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773)
* Version: 0.38.0(0e330ae453813de4e6cf272460fb79c7117073d0)
* Released under the MIT license
* https://github.com/microsoft/vscode/blob/main/LICENSE.txt
*-----------------------------------------------------------*/
@ -29,6 +29,7 @@ define("vs/editor/editor.main.nls.fr", {
"Avertissement : {0}",
"Info : {0}",
"pour lhistorique",
"Entrée effacée",
],
"vs/base/browser/ui/keybindingLabel/keybindingLabel": [
"Indépendant",
@ -110,6 +111,7 @@ define("vs/editor/editor.main.nls.fr", {
"Élément décoratif de ligne pour les suppressions dans l\'éditeur de différences.",
" utiliser Maj + F7 pour parcourir les modifications",
"Impossible de comparer les fichiers car l\'un d\'eux est trop volumineux.",
"Cliquez pour rétablir la modification",
],
"vs/editor/browser/widget/diffReview": [
"Icône de l\'option Insérer dans la revue des différences.",
@ -160,7 +162,7 @@ define("vs/editor/editor.main.nls.fr", {
"Les lignes plus longues que cette valeur ne sont pas tokenisées pour des raisons de performances",
"Contrôle si la création de jetons doit se produire de manière asynchrone sur un worker web.",
"Contrôle si la création de jetons asynchrones doit être journalisée. Pour le débogage uniquement.",
"Controls whether async tokenization should be verified against legacy background tokenization. Might slow down tokenization. For debugging only.",
"Contrôle si la segmentation du texte en unités lexicales asynchrones doit être vérifiée par rapport à la segmentation du texte en unités lexicales en arrière-plan héritée. Peut ralentir la segmentation du texte en unités lexicales. Pour le débogage uniquement.",
"Définit les symboles de type crochet qui augmentent ou diminuent le retrait.",
"Séquence de chaînes ou de caractères de crochets ouvrants.",
"Séquence de chaînes ou de caractères de crochets fermants.",
@ -177,8 +179,8 @@ define("vs/editor/editor.main.nls.fr", {
"Le retour automatique à la ligne n\'est jamais effectué.",
"Le retour automatique à la ligne s\'effectue en fonction de la largeur de la fenêtre d\'affichage.",
"Le retour automatique à la ligne dépend du paramètre {0}.",
"Utilise lalgorithme de comparaison par défaut.",
"Utilise un algorithme de comparaison expérimental.",
"Utilise lalgorithme de comparaison hérité.",
"Utilise lalgorithme de comparaison avancé.",
],
"vs/editor/common/config/editorOptions": [
"Utiliser les API de la plateforme pour détecter si un lecteur d\'écran est attaché",
@ -367,6 +369,9 @@ define("vs/editor/editor.main.nls.fr", {
"Les lignes justifiées obtiennent une mise en retrait +2 vers le parent. ",
"Contrôle la mise en retrait des lignes justifiées.",
"Contrôle si vous pouvez faire glisser et déposer un fichier dans un éditeur de texte en maintenant la touche Maj enfoncée (au lieu douvrir le fichier dans un éditeur).",
"Contrôle si un widget est affiché lors de lannulation de fichiers dans léditeur. Ce widget vous permet de contrôler la façon dont le fichier est annulé.",
"Afficher le widget du sélecteur de dépôt après la suppression dun fichier dans léditeur.",
"Ne jamais afficher le widget du sélecteur de dépôt. À la place, le fournisseur de dépôt par défaut est toujours utilisé.",
"Contrôle si les suggestions doivent être acceptées sur les caractères de validation. Par exemple, en JavaScript, le point-virgule (`;`) peut être un caractère de validation qui accepte une suggestion et tape ce caractère.",
"Accepter uniquement une suggestion avec \'Entrée\' quand elle effectue une modification textuelle.",
"Contrôle si les suggestions sont acceptées après appui sur \'Entrée\', en plus de \'Tab\'. Permet déviter toute ambiguïté entre linsertion de nouvelles lignes et l\'acceptation de suggestions.",
@ -507,6 +512,7 @@ define("vs/editor/editor.main.nls.fr", {
"Les lignes seront terminées au minimum du viewport et `#editor.wordWrapColumn#`.",
"Contrôle comment les lignes doivent être limitées.",
"Contrôle la colonne de terminaison de léditeur lorsque `#editor.wordWrap#` est à `wordWrapColumn` ou `bounded`.",
"Contrôle si les décorations de couleur inline doivent être affichées à laide du fournisseur de couleurs de document par défaut",
"Contrôle si léditeur reçoit des onglets ou les reporte au banc dessai pour la navigation.",
],
"vs/editor/common/core/editorColorRegistry": [
@ -578,6 +584,8 @@ define("vs/editor/editor.main.nls.fr", {
"Indique si le pointage de léditeur est ciblé",
"Indique si le défilement du pense-bête a le focus",
"Indique si le défilement du pense-bête est visible",
"Indique si le sélecteur de couleurs autonome est visible",
"Indique si le sélecteur de couleurs autonome est prioritaire",
"Indique si l\'éditeur fait partie d\'un éditeur plus important (par exemple Notebooks)",
"Identificateur de langage de l\'éditeur",
"Indique si l\'éditeur a un fournisseur d\'éléments de complétion",
@ -629,6 +637,7 @@ define("vs/editor/editor.main.nls.fr", {
"Appuyez sur Contrôle+H maintenant pour ouvrir une fenêtre de navigateur avec plus d\'informations sur l\'accessibilité de l\'éditeur.",
"Vous pouvez masquer cette info-bulle et revenir à l\'éditeur en appuyant sur Échap ou Maj+Échap.",
"Afficher l\'aide sur l\'accessibilité",
"Aide sur laccessibilité",
"Développeur : Inspecter les jetons",
"Accéder à la ligne/colonne...",
"Afficher tous les fournisseurs d\'accès rapide",
@ -747,6 +756,13 @@ define("vs/editor/editor.main.nls.fr", {
],
"vs/editor/contrib/colorPicker/browser/colorPickerWidget": [
"Cliquez pour activer/désactiver les options de couleur (rgb/hsl/hexadécimal).",
"Icône pour fermer le sélecteur de couleurs",
],
"vs/editor/contrib/colorPicker/browser/standaloneColorPickerActions": [
"Afficher ou mettre le focus sur le sélecteur de couleurs autonome",
"&&Afficher ou mettre le focus sur le sélecteur de couleurs autonome",
"Masquer le sélecteur de couleurs",
"Insérer une couleur avec un sélecteur de couleurs autonome",
],
"vs/editor/contrib/comment/browser/comment": [
"Activer/désactiver le commentaire de ligne",
@ -772,14 +788,28 @@ define("vs/editor/editor.main.nls.fr", {
"Activez/désactivez lexécution des modifications à partir des extensions lors du collage.",
],
"vs/editor/contrib/copyPaste/browser/copyPasteController": [
"Exécution des gestionnaires de collage...",
"Exécution des gestionnaires de collage. Cliquez pour annuler",
],
"vs/editor/contrib/cursorUndo/browser/cursorUndo": [
"Annulation du curseur",
"Restauration du curseur",
],
"vs/editor/contrib/dropIntoEditor/browser/defaultOnDropProviders": [
"Insérer du texte brut",
"Insérer des URI",
"Insérer un URI",
"Insérer des chemins daccès",
"Insérer un chemin daccès",
"Insérer des chemins daccès relatifs",
"Insérer un chemin daccès relatif",
],
"vs/editor/contrib/dropIntoEditor/browser/dropIntoEditorContribution": [
"Exécution des gestionnaires de dépôt...",
"Exécution des gestionnaires de dépôt. Cliquez pour annuler",
],
"vs/editor/contrib/dropIntoEditor/browser/postDropWidget": [
"Indique si le widget de suppression saffiche",
"Afficher les options de suppression... ({0})",
"Afficher les options de suppression...",
],
"vs/editor/contrib/editorState/browser/keybindingCancellation": [
"Indique si l\'éditeur exécute une opération annulable, par exemple \'Avoir un aperçu des références\'",
@ -796,6 +826,7 @@ define("vs/editor/editor.main.nls.fr", {
"Rechercher suivant",
"Rechercher précédent",
"Accéder à la correspondance...",
"Aucune correspondance. Essayez de rechercher autre chose.",
"Tapez un nombre pour accéder à une correspondance spécifique (entre 1 et {0})",
"Veuillez entrer un nombre compris entre 1 et {0}",
"Veuillez entrer un nombre compris entre 1 et {0}",
@ -1028,28 +1059,30 @@ define("vs/editor/editor.main.nls.fr", {
"Accéder à Définition ({0})",
"Exécuter la commande",
],
"vs/editor/contrib/inlineCompletions/browser/ghostTextController": [
"Indique si une suggestion en ligne est visible",
"Indique si la suggestion en ligne commence par un espace blanc",
"Indique si la suggestion incluse commence par un espace blanc inférieur à ce qui serait inséré par longlet.",
"Indique si lannulation annulerait une suggestion inline",
"Indique si la barre doutils de suggestion en ligne doit toujours être visible",
"vs/editor/contrib/inlineCompletions/browser/commands": [
"Afficher la suggestion en ligne suivante",
"Afficher la suggestion en ligne précédente",
"Déclencher la suggestion en ligne",
"Accepter le mot suivant de la suggestion inline",
"Accepter le mot",
"Accepter la ligne suivante dune suggestion en ligne",
"Accepter la ligne",
"Accepter la suggestion inline",
"Accepter",
"Masquer la suggestion inlined",
"Toujours afficher la barre doutils",
"Annuler lacceptation du mot",
"Annuler lacceptation du mot",
],
"vs/editor/contrib/inlineCompletions/browser/ghostTextHoverParticipant": [
"vs/editor/contrib/inlineCompletions/browser/hoverParticipant": [
"Suggestion :",
],
"vs/editor/contrib/inlineCompletions/browser/inlineSuggestionHintsWidget": [
"vs/editor/contrib/inlineCompletions/browser/inlineCompletionContextKeys": [
"Indique si une suggestion en ligne est visible",
"Indique si la suggestion en ligne commence par un espace blanc",
"Indique si la suggestion incluse commence par un espace blanc inférieur à ce qui serait inséré par longlet.",
"Indique si la barre doutils de suggestion en ligne doit toujours être visible",
"Indique si les suggestions doivent être supprimées pour la suggestion actuelle",
],
"vs/editor/contrib/inlineCompletions/browser/inlineCompletionsHintsWidget": [
"Icône d\'affichage du prochain conseil de paramètre.",
"Icône d\'affichage du précédent conseil de paramètre.",
"{0} ({1})",
@ -1573,10 +1606,10 @@ define("vs/editor/editor.main.nls.fr", {
"Info",
],
"vs/platform/quickinput/browser/commandsQuickAccess": [
"{0}, {1}",
"récemment utilisées",
"utilisés le plus souvent",
"autres commandes",
"{0}, {1}",
"La commande « {0} » a entraîné une erreur",
],
"vs/platform/quickinput/browser/helpQuickAccess": [
@ -1658,15 +1691,15 @@ define("vs/editor/editor.main.nls.fr", {
"Couleur de fond pour la barre de progression qui peut s\'afficher lors d\'opérations longues.",
"Couleur d\'arrière-plan du texte d\'erreur dans l\'éditeur. La couleur ne doit pas être opaque pour ne pas masquer les décorations sous-jacentes.",
"Couleur de premier plan de la ligne ondulée marquant les erreurs dans l\'éditeur.",
"Couleur de bordure des zones d\'erreur dans l\'éditeur.",
"Si cette option est définie, couleur des doubles soulignements pour les erreurs dans léditeur.",
"Couleur d\'arrière-plan du texte d\'avertissement dans l\'éditeur. La couleur ne doit pas être opaque pour ne pas masquer les décorations sous-jacentes.",
"Couleur de premier plan de la ligne ondulée marquant les avertissements dans l\'éditeur.",
"Couleur de bordure des zones d\'avertissement dans l\'éditeur.",
"Si cette option est définie, couleur des doubles soulignements pour les avertissements dans léditeur.",
"Couleur d\'arrière-plan du texte d\'information dans l\'éditeur. La couleur ne doit pas être opaque pour ne pas masquer les décorations sous-jacentes.",
"Couleur de premier plan de la ligne ondulée marquant les informations dans l\'éditeur.",
"Couleur de bordure des zones d\'informations dans l\'éditeur.",
"Si cette option est définie, couleur des doubles soulignements pour les informations dans léditeur.",
"Couleur de premier plan de la ligne ondulée d\'indication dans l\'éditeur.",
"Couleur de bordure des zones d\'indication dans l\'éditeur.",
"Si cette option est définie, couleur des doubles soulignements pour les conseils dans léditeur.",
"Couleur de bordure des fenêtres coulissantes.",
"Couleur d\'arrière-plan de l\'éditeur.",
"Couleur de premier plan par défaut de l\'éditeur.",

Some files were not shown because too many files have changed in this diff Show more