diff --git a/.github/ISSUE_TEMPLATE/debugger.md b/.github/ISSUE_TEMPLATE/debugger.md
index 9c4c36f7df..4f2f8acf8c 100644
--- a/.github/ISSUE_TEMPLATE/debugger.md
+++ b/.github/ISSUE_TEMPLATE/debugger.md
@@ -1,6 +1,6 @@
---
-name: Debugger
-about: Issues pertaining to debugging such as call stack, breakpoints, watch window,
+name: Bug Report - Debugger
+about: Create a bug report for debugging such as call stack, breakpoints, watch window,
launching or attaching to a debuggee.
title: ''
labels: ''
@@ -8,16 +8,15 @@ assignees: ''
---
-Type: Debugger
-
+Bug type: Debugger
-
+
**Describe the bug**
- OS and Version:
- VS Code Version:
@@ -25,6 +24,7 @@ Type: Debugger
- Other extensions you installed (and if the issue persists after disabling them):
- A clear and concise description of what the bug is.
+
**To Reproduce**
*Please include a code sample and `launch.json` configuration.*
Steps to reproduce the behavior:
@@ -33,6 +33,7 @@ Steps to reproduce the behavior:
3. Scroll down to '....'
4. See error
+
**Additional context**
*If applicable, please include logging by adding "logging": { "engineLogging": true, "trace": true, "traceResponse": true } in your `launch.json`*
Add any other context about the problem here including log or error messages in your Debug Console or Output windows.
diff --git a/.github/ISSUE_TEMPLATE/feature-request.md b/.github/ISSUE_TEMPLATE/feature-request.md
new file mode 100644
index 0000000000..c8dde37698
--- /dev/null
+++ b/.github/ISSUE_TEMPLATE/feature-request.md
@@ -0,0 +1,17 @@
+---
+name: Feature Request
+about: Suggest an idea for this extension.
+title: ''
+labels: ''
+assignees: ''
+
+---
+
+Type: Feature Request
+
+
+
+
diff --git a/.github/ISSUE_TEMPLATE/general-extension.md b/.github/ISSUE_TEMPLATE/general-extension.md
index 7726b24b25..d702495ce4 100644
--- a/.github/ISSUE_TEMPLATE/general-extension.md
+++ b/.github/ISSUE_TEMPLATE/general-extension.md
@@ -1,22 +1,21 @@
---
-name: General Extension
-about: Issues pertaining to downloading, installing, or building the extension.
+name: Bug Report - General Extension
+about: Create a bug report for downloading, installing, or building the extension.
title: ''
labels: ''
assignees: ''
---
-Type: General
-
+Bug type: General
-
+
**Describe the bug**
- OS and Version:
- VS Code Version:
@@ -24,6 +23,7 @@ Type: General
- Other extensions you installed (and if the issue persists after disabling them):
- A clear and concise description of what the bug is.
+
**To Reproduce**
*Please include code sample and `task.json` files.*
Steps to reproduce the behavior:
@@ -32,11 +32,14 @@ Steps to reproduce the behavior:
3. Scroll down to '....'
4. See error
+
**Expected behavior**
-A clear and concise description of what you expected to happen.
+
+
**Screenshots**
-If applicable, add screenshots to help explain your problem.
+
+
**Additional context**
-Add any other context about the problem here including log messages from the Output window.
+
diff --git a/.github/ISSUE_TEMPLATE/language-service.md b/.github/ISSUE_TEMPLATE/language-service.md
index 553c37eaf5..c7b80a6c85 100644
--- a/.github/ISSUE_TEMPLATE/language-service.md
+++ b/.github/ISSUE_TEMPLATE/language-service.md
@@ -1,58 +1,65 @@
---
-name: Language Service
-about: 'Issues pertaining to IntelliSense, autocomplete, code editing, etc. '
+name: Bug Report - Language Service
+about: 'Create a bug report for IntelliSense, autocomplete, code editing, code navigation, etc.'
title: ''
labels: ''
assignees: ''
---
-**Type: LanguageService**
-
+Bug type: Language Service
-
+
**Describe the bug**
- OS and Version:
- VS Code Version:
- C/C++ Extension Version:
- Other extensions you installed (and if the issue persists after disabling them):
-- Does this issue involve using SSH remote to run the extension on a remote machine?:
+- If using SSH remote, specify OS of remote machine:
- A clear and concise description of what the bug is, including information about the workspace (i.e. is the workspace a single project or multiple projects, size of the project, etc).
+
**Steps to reproduce**
-
-
+
1. Go to '...'
2. Click on '....'
3. Scroll down to '....'
4. See error
+
**Expected behavior**
-
-
- Logs
-
-```
-Insert logs here.
-```
-
+**Code sample and logs**
+
+- Code sample
+
+- Configurations in `c_cpp_properties.json`
+
+- Logs from running `C/C++: Log Diagnostics` from the VS Code command palette
+
+- Logs from [the language server logging](https://code.visualstudio.com/docs/cpp/enable-logging-cpp#_enable-logging-for-the-language-server)
+
**Screenshots**
+
**Additional context**
diff --git a/.github/actions/package-lock.json b/.github/actions/package-lock.json
index 3f3639fd52..ce5f571039 100644
--- a/.github/actions/package-lock.json
+++ b/.github/actions/package-lock.json
@@ -940,9 +940,9 @@
}
},
"lodash": {
- "version": "4.17.20",
- "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.20.tgz",
- "integrity": "sha512-PlhdFcillOINfeV7Ni6oF1TAEayyZBoZ8bcshTHqOYJYlrqzRK5hagpagky5o4HfCzzd1TRkXPMFq6cKk9rGmA==",
+ "version": "4.17.21",
+ "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz",
+ "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==",
"dev": true
},
"lodash.get": {
diff --git a/.github/workflows/ci_mac.yml b/.github/workflows/ci_mac.yml
index 100123ccb9..a80f659a8a 100644
--- a/.github/workflows/ci_mac.yml
+++ b/.github/workflows/ci_mac.yml
@@ -19,7 +19,7 @@ jobs:
node-version: 14.16.x
- name: Install Dependencies
- run: yarn install
+ run: yarn install --network-timeout 100000
working-directory: Extension
- name: Generate hashes for runtime dependency packages
diff --git a/.github/workflows/enhancement-closer-no-milestone.yml b/.github/workflows/enhancement-closer-no-milestone.yml
new file mode 100644
index 0000000000..d60cdc05e0
--- /dev/null
+++ b/.github/workflows/enhancement-closer-no-milestone.yml
@@ -0,0 +1,30 @@
+name: Enhancement Closer (no milestone)
+on:
+ schedule:
+ - cron: 50 11 * * * # Run at 11:50 AM UTC (3:50 AM PST, 4:50 AM PDT)
+ workflow_dispatch:
+ inputs:
+ readonly:
+ description: "readonly: Specify true or 1 to prevent changes from being commited to GitHub"
+ default: false
+
+jobs:
+ main:
+ runs-on: ubuntu-latest
+ steps:
+ - name: Checkout Actions
+ uses: actions/checkout@v2
+ - name: Install Actions
+ run: cd ./.github/actions && npm install --production && cd ../..
+ - name: Stale Closer
+ uses: ./.github/actions/StaleCloser
+ with:
+ readonly: ${{ github.event.inputs.readonly }}
+ labels: enhancement
+ ignoreLabels: debugger,internal,Feature Request
+ addLabels: more votes needed
+ closeDays: 60
+ maximumVotes: 2
+ closeComment: "This feature request is being closed due to insufficient upvotes. When enough upvotes are received, this issue will be eligible for our backlog."
+ setMilestoneId: 30
+ ignoreMilestoneNames: "*"
diff --git a/.github/workflows/enhancement-closer-triage.yml b/.github/workflows/enhancement-closer-triage.yml
new file mode 100644
index 0000000000..cda38dc32c
--- /dev/null
+++ b/.github/workflows/enhancement-closer-triage.yml
@@ -0,0 +1,30 @@
+name: Enhancement Closer (Triage)
+on:
+ schedule:
+ - cron: 40 11 * * * # Run at 11:40 AM UTC (3:40 AM PST, 4:40 AM PDT)
+ workflow_dispatch:
+ inputs:
+ readonly:
+ description: "readonly: Specify true or 1 to prevent changes from being commited to GitHub"
+ default: false
+
+jobs:
+ main:
+ runs-on: ubuntu-latest
+ steps:
+ - name: Checkout Actions
+ uses: actions/checkout@v2
+ - name: Install Actions
+ run: cd ./.github/actions && npm install --production && cd ../..
+ - name: Stale Closer
+ uses: ./.github/actions/StaleCloser
+ with:
+ readonly: ${{ github.event.inputs.readonly }}
+ labels: enhancement
+ ignoreLabels: debugger,internal,Feature Request
+ addLabels: more votes needed
+ closeDays: 60
+ maximumVotes: 2
+ closeComment: "This feature request is being closed due to insufficient upvotes. When enough upvotes are received, this issue will be eligible for our backlog."
+ milestoneName: Triage
+ milestoneId: 30
diff --git a/.github/workflows/enhancement-reopener.yml b/.github/workflows/enhancement-reopener.yml
new file mode 100644
index 0000000000..28fe260a2e
--- /dev/null
+++ b/.github/workflows/enhancement-reopener.yml
@@ -0,0 +1,31 @@
+name: Enhancement Reopener
+on:
+ schedule:
+ - cron: 20 12 * * * # Run at 12:20 PM UTC (4:20 AM PST, 5:20 AM PDT)
+ workflow_dispatch:
+ inputs:
+ readonly:
+ description: "readonly: Specify true or 1 to prevent changes from being commited to GitHub"
+ default: false
+
+jobs:
+ main:
+ runs-on: ubuntu-latest
+ steps:
+ - name: Checkout Actions
+ uses: actions/checkout@v2
+ - name: Install Actions
+ run: cd ./.github/actions && npm install --production && cd ../..
+ - name: Run Reopener
+ uses: ./.github/actions/Reopener
+ with:
+ readonly: ${{ github.event.inputs.readonly }}
+ alsoApplyToOpenIssues: true
+ reopenComment: This feature request has received enough votes to be added to our backlog.
+ labels: enhancement
+ minimumVotes: 3
+ ignoreLabels: debugger,internal,Feature Request
+ milestoneId: 30
+ milestoneName: Triage
+ setMilestoneId: 28
+ removeLabels: more votes needed
diff --git a/Build/loc/LocProject.json b/Build/loc/LocProject.json
new file mode 100644
index 0000000000..70fad52ac7
--- /dev/null
+++ b/Build/loc/LocProject.json
@@ -0,0 +1,13 @@
+{
+ "Projects": [
+ {
+ "LanguangeSet": "VS_Main_Languages",
+ "LocItems": [
+ {
+ "SourceFile": "vscode-extensions-localization-export\\vscode-extensions\\vscode-cpptools.xlf",
+ "Languages": "cs;de;es;fr;it;ja;ko;pl;pt-BR;ru;tr;zh-Hans;zh-Hant"
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/Build/loc/TranslationsExport.yml b/Build/loc/TranslationsExport.yml
new file mode 100644
index 0000000000..b934637682
--- /dev/null
+++ b/Build/loc/TranslationsExport.yml
@@ -0,0 +1,37 @@
+# ==================================================================================
+# Pipeline for VsCodeExtension-Localization build definition
+# Runs OneLocBuild task to localize xlf file
+# ==================================================================================
+
+resources:
+ repositories:
+ - repository: self
+ clean: true
+
+trigger: none
+pr: none
+
+pool:
+ vmImage: 'windows-latest'
+
+steps:
+- task: CmdLine@2
+ inputs:
+ script: 'cd ./Extension && yarn run translations-export && cd ..'
+
+- task: OneLocBuild@1
+ env:
+ SYSTEM_ACCESSTOKEN: $(System.AccessToken)
+ inputs:
+ locProj: 'Build/loc/LocProject.json'
+ outDir: '$(Build.ArtifactStagingDirectory)'
+ isCreatePrSelected: false
+ prSourceBranchPrefix: 'locfiles'
+ packageSourceAuth: 'patAuth'
+ patVariable: '$(OneLocBuildPat)'
+
+- task: PublishBuildArtifacts@1
+ inputs:
+ PathtoPublish: '$(Build.ArtifactStagingDirectory)'
+ ArtifactName: 'drop'
+ publishLocation: 'Container'
diff --git a/Build/loc/TranslationsImport.yml b/Build/loc/TranslationsImport.yml
new file mode 100644
index 0000000000..6d917cbcf0
--- /dev/null
+++ b/Build/loc/TranslationsImport.yml
@@ -0,0 +1,37 @@
+# ==================================================================================
+# Pipeline for VsCodeExtension-Localization build definition
+# Gets translated files from VSCodeExt and creates a PR for vscode-cpptools
+#
+# Triggered only by daily schedule
+# ==================================================================================
+
+trigger: none
+pr: none
+schedules:
+- cron: "0 7 * * *"
+ displayName: Daily 7 AM
+ branches:
+ include:
+ - main
+
+pool:
+ vmImage: 'windows-latest'
+
+steps:
+- checkout: self
+ path: s/vscode-cpptools
+
+- task: CmdLine@2
+ inputs:
+ script: 'git clone $(LocRepoUri) ..\VSCodeExt'
+ workingDirectory: '$(Build.SourcesDirectory)'
+
+- task: CmdLine@2
+ inputs:
+ script: 'cd Extension && yarn install'
+ workingDirectory: '$(Build.SourcesDirectory)'
+
+- task: CmdLine@2
+ inputs:
+ script: 'cd Extension && node ./translations_auto_pr.js microsoft vscode-cpptools cpptools csigs $(csigsPat) csigs csigs@users.noreply.github.com $(Build.SourcesDirectory)/../VSCodeExt'
+ workingDirectory: '$(Build.SourcesDirectory)'
diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md
index 4d3efb86d4..6257f2e76f 100644
--- a/CODE_OF_CONDUCT.md
+++ b/CODE_OF_CONDUCT.md
@@ -1,3 +1,9 @@
-## Microsoft Open Source Code of Conduct
+# Microsoft Open Source Code of Conduct
-This project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see the [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact opencode@microsoft.com with any additional questions or comments.
+This project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/).
+
+Resources:
+
+- [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/)
+- [Microsoft Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/)
+- Contact [opencode@microsoft.com](mailto:opencode@microsoft.com) with questions or concerns
\ No newline at end of file
diff --git a/Documentation/Debugger/ExceptionSettings.md b/Documentation/Debugger/ExceptionSettings.md
new file mode 100644
index 0000000000..d5c75ee44c
--- /dev/null
+++ b/Documentation/Debugger/ExceptionSettings.md
@@ -0,0 +1,20 @@
+# Exception Settings
+
+The Microsoft Windows C/C++ debugger (cppvsdbg) supports configuration options for if the debugger stops when exceptions are thrown. This is done with the 'All Exceptions' check box in the BREAKPOINTS section of the 'Run and Debug' view.
+
+Note that the BREAKPOINTS section will be missing this entry until the first time that the folder has been debugged with the 'cppvsdbg' debugger.
+
+Checking 'All Exceptions' will configure the debugger to stop when an exception is thrown.
+
+##### Exception Conditions
+
+The 'All Exceptions' checkbox support conditions to break on only selected exception types (C++ exceptions) or codes (Win32 exceptions). To edit the condition, click on the pencil icon or right click on the entry and invoke 'Edit Condition'. The condition is a comma-separated list of exception types and codes to break on, or if the list starts with '!', a list of exception types and codes to ignore.
+
+Examples conditions:
+
+| Example condition value | Result |
+|-------------------------|--------|
+| 0xC0000005, 0xC0000094 | Break on Win32 Access Violation exceptions and integer division by zero exceptions |
+| std::out_of_range, 0xC0000005 | This will break on out-of-range exceptions, and access violation exceptions |
+| !MyExceptionClass | This will break on all exceptions except C++ `MyExceptionClass` exceptions |
+| !MyExceptionClass, 0x6831C815 | This will break on all exceptions except C++ `MyExceptionClass` exceptions and Win32 exceptions with custom code 0x6831C815 |
diff --git a/Extension/.eslintrc.js b/Extension/.eslintrc.js
index 7e93872456..7ea41d4543 100644
--- a/Extension/.eslintrc.js
+++ b/Extension/.eslintrc.js
@@ -19,7 +19,14 @@ module.exports = {
"rules": {
"@typescript-eslint/adjacent-overload-signatures": "error",
"@typescript-eslint/array-type": "error",
- "@typescript-eslint/class-name-casing": "error",
+ "camelcase": "off",
+ "@typescript-eslint/naming-convention": [
+ "error",
+ {
+ "selector": "typeLike",
+ "format": ["PascalCase"]
+ }
+ ],
"@typescript-eslint/indent": "error",
"@typescript-eslint/member-delimiter-style": [
"error",
@@ -71,7 +78,7 @@ module.exports = {
"no-fallthrough": "error",
"no-invalid-this": "error",
"no-irregular-whitespace": "error",
- "no-multiple-empty-lines": ["error", { "max": 1, "maxEOF": 1, "maxBOF": 0}],
+ "no-multiple-empty-lines": ["error", { "max": 1, "maxEOF": 1, "maxBOF": 0 }],
"no-new-wrappers": "error",
"no-redeclare": "error",
"no-return-await": "error",
diff --git a/Extension/CHANGELOG.md b/Extension/CHANGELOG.md
index 809b519dcf..087b02ed09 100644
--- a/Extension/CHANGELOG.md
+++ b/Extension/CHANGELOG.md
@@ -1,70 +1,80 @@
# C/C++ for Visual Studio Code Change Log
-## Version 1.3.0-insiders5: April 8, 2021
-### Bug Fixes
-* Display integer values for char and unsigned char on hover instead of character symbols. [#1552](https://github.com/microsoft/vscode-cpptools/issues/1552)
-* Fix a crash (and other bugs) caused by resolving symlinks when processing recursive includes. [#7306](https://github.com/microsoft/vscode-cpptools/issues/7306)
-* Fix bug preventing successful validation and receipt of browse configurations from custom configuration providers. [PR# 7131](https://github.com/microsoft/vscode-cpptools/pull/7313)
-* Fix a potential crash on shutdown and when editing at the end of a document.
-
-## Version 1.3.0-insiders4: April 6, 2021
-### New Features
-* Add native language service binaries for ARM64 Mac. [#6595](https://github.com/microsoft/vscode-cpptools/issues/6595)
-
+## Version 1.4.0-insiders: May 10, 2021
### Enhancements
-* Add auto-closing of include completion brackets. [#7054](https://github.com/microsoft/vscode-cpptools/issues/7054)
-* Add a `C_Cpp.files.exclude` setting, which is identical to `files.exclude` except items aren't excluded from the Explorer view. [PR #7285](https://github.com/microsoft/vscode-cpptools/pull/7285)
+* Update to clang-format 12. [#6434](https://github.com/microsoft/vscode-cpptools/issues/6434)
+* Fix file:line path for $FILEPOS [#7193](https://github.com/microsoft/vscode-cpptools/issues/7193)
+ * [#1124](https://github.com/microsoft/MIEngine/pull/1124)
+* Add `stopAtConnect` and `hardwareBreakpoints` launch options [PR #7449](https://github.com/microsoft/vscode-cpptools/pull/7449)
+ * `stopAtConnect` stops the debugger on connection to a remote target [PR MIEngine#1109](https://github.com/microsoft/MIEngine/pull/1109)
+ * `hardwareBreakpoints` controls usage and number of remote hardware breakpoints [PR MIEngine#1128](https://github.com/microsoft/MIEngine/pull/1128)
+* Add support for loading Concord extensions to the cppvsdbg debug adapter (see [documentation](https://github.com/microsoft/ConcordExtensibilitySamples/wiki/Support-for-VS-Code-cppvsdbg-Scenarios) for more information)
+* Add support for exception conditions to cppvsdbg (see [documentation](https://aka.ms/VSCode-Cpp-ExceptionSettings) for more information)
### Bug Fixes
-* Fix directory iteration to check files.exclude and symlinks and use less memory. [#3123](https://github.com/microsoft/vscode-cpptools/issues/3123), [#4206](https://github.com/microsoft/vscode-cpptools/issues/4206), [#6864](https://github.com/microsoft/vscode-cpptools/issues/6864)
-* Fix bug with placement new on Windows with gcc mode. [#6246](https://github.com/microsoft/vscode-cpptools/issues/6246)
-* Fix `GoToNextDirectiveInGroup` command for multiroot. [#7283](https://github.com/microsoft/vscode-cpptools/issues/7283)
-* Fix field requirements for custom configurations. [PR #7295](https://github.com/microsoft/vscode-cpptools/pull/7295)
-* Fix integrity hash checking of downloaded packages for the extension. [PR #7300](https://github.com/microsoft/vscode-cpptools/pull/7300)
-
-## Version 1.3.0-insiders3: April 1, 2021
-### New Features
-* Add commands for navigating to matching preprocessor directives in conditional groups. [#7256](https://github.com/microsoft/vscode-cpptools/pull/7256)
-
+* Fix IntelliSense configuration with cl.exe compiler args `/external:I`, `/Zc:preprocessor`, and others. [#4980](https://github.com/microsoft/vscode-cpptools/issues/4980), [#6531](https://github.com/microsoft/vscode-cpptools/issues/6531), [#7259](https://github.com/microsoft/vscode-cpptools/issues/7259)
+* Fix provider failed error logging. [#5487](https://github.com/microsoft/vscode-cpptools/issues/5487)
+* Fix -idirafter directories being included too early. [#7129](https://github.com/microsoft/vscode-cpptools/issues/7129)
+* Filter out C++ std when querying the compiler as C (and vice versa). [#7269](https://github.com/microsoft/vscode-cpptools/issues/7269)
+* Fix files.exclude ending with `/folder/**` not excluding `/folder`. [#7331](https://github.com/microsoft/vscode-cpptools/issues/7331)
+* Fix VS Code UI freezing when hovering over very large literals. [#7334](https://github.com/microsoft/vscode-cpptools/issues/7334)
+* Fix clang-format formatting bug when new lines are removed. [#7360](https://github.com/microsoft/vscode-cpptools/issues/7360)
+* Change default cwd in launch.json to `${fileDirname}`. [#7362](https://github.com/microsoft/vscode-cpptools/issues/7362)
+ * Syed Ahmad (@HackintoshwithUbuntu) [PR #7363](https://github.com/microsoft/vscode-cpptools/pull/7363)
+* Fix a crash on Linux with a `/**` includePath.
+* Fix the compile commands entry not being used when -Werror is used. [#7388](https://github.com/microsoft/vscode-cpptools/issues/7388)
+* Fix some potential race conditions during vsix installation. [#7405](https://github.com/microsoft/vscode-cpptools/issues/7405)
+
+## Version 1.3.1: April 19, 2021
### Bug Fixes
-* Fix detection of bitness for compilers targeting esp32. [#7034](https://github.com/microsoft/vscode-cpptools/issues/7034)
-* Fix comment continuations. [PR #7238](https://github.com/microsoft/vscode-cpptools/pull/7238)
-* Fix bug when `${workspaceFolder}` is used in `compileCommands`. [#7241](https://github.com/microsoft/vscode-cpptools/issues/7241)
- * Aleksa Pavlovic (@aleksa2808) [PR #7242](https://github.com/microsoft/vscode-cpptools/pull/7242)
+* Fix extension not activating when `/.vscode/c_cpp_properties.json` exists but no C/C++ file is open. [#7344](https://github.com/microsoft/vscode-cpptools/issues/7344)
+* Fix logging for an invalid provider configuration.
+ * Yonggang Luo (@lygstate) [PR #7350](https://github.com/microsoft/vscode-cpptools/pull/7350)
+* Fix extension activation with 32-bit Windows. [#7368](https://github.com/microsoft/vscode-cpptools/issues/7368)
-## Version 1.3.0-insiders2: March 25, 2021
+## Version 1.3.0: April 13, 2021
### New Features
+* Add language service support for CUDA.
* Add highlighting of matching conditional preprocessor statements. [#2565](https://github.com/microsoft/vscode-cpptools/issues/2565)
+* Add commands for navigating to matching preprocessor directives in conditional groups. [#4779](https://github.com/microsoft/vscode-cpptools/issues/4779)
+* Add native language service binaries for ARM64 Mac. [#6595](https://github.com/microsoft/vscode-cpptools/issues/6595)
-### Bug Fixes
-* Fix a spurious asterisk being inserted on a new line if the previous line starts with an asterisk. [#5733](https://github.com/microsoft/vscode-cpptools/issues/5733)
-* Fix random crashes of cpptools-srv during shutdown. [#7161](https://github.com/microsoft/vscode-cpptools/issues/7161)
-* Change `C_Cpp.autocompleteAddParentheses` to be false by default. [#7199](https://github.com/microsoft/vscode-cpptools/issues/7199)
-* Fix auto add parentheses incorrectly occurring with template methods. [#7203](https://github.com/microsoft/vscode-cpptools/issues/7203)
-* Fix auto adding parentheses incorrectly occurring with type names. [#7209](https://github.com/microsoft/vscode-cpptools/issues/7209)
-* Fix a bug with relative "." paths in compile commands. [#7221](https://github.com/microsoft/vscode-cpptools/issues/7221)
-* Fix configuration issues with Unreal Engine projects. [#7222](https://github.com/microsoft/vscode-cpptools/issues/7222)
-
-## Version 1.3.0-insiders: March 18, 2021
### Enhancements
-* Add parentheses to function calls with autocomplete. [#882](https://github.com/microsoft/vscode-cpptools/issues/882)
+* Add parentheses to function calls when `C_Cpp.autocompleteAddParentheses` is `true`. [#882](https://github.com/microsoft/vscode-cpptools/issues/882)
+* Add @retval support to the simplified view of doc comments. [#6816](https://github.com/microsoft/vscode-cpptools/issues/6816)
+* Add auto-closing of include completion brackets. [#7054](https://github.com/microsoft/vscode-cpptools/issues/7054)
* Add support for nodeAddonIncludes with Yarn PnP.
* Mestery (@Mesterry) [PR #7123](https://github.com/microsoft/vscode-cpptools/pull/7123)
+* Add a `C_Cpp.files.exclude` setting, which is identical to `files.exclude` except items aren't excluded from the Explorer view. [PR #7285](https://github.com/microsoft/vscode-cpptools/pull/7285)
### Bug Fixes
+* Display integer values for char and unsigned char on hover instead of character symbols. [#1552](https://github.com/microsoft/vscode-cpptools/issues/1552)
+* Fix directory iteration to check files.exclude and symlinks and use less memory. [#3123](https://github.com/microsoft/vscode-cpptools/issues/3123), [#4206](https://github.com/microsoft/vscode-cpptools/issues/4206), [#6864](https://github.com/microsoft/vscode-cpptools/issues/6864)
* Fix an issue with stale IntelliSense due to moving or renaming header files. [#3849](https://github.com/microsoft/vscode-cpptools/issues/3849)
* Fix go to definition on large macros. [#4306](https://github.com/microsoft/vscode-cpptools/issues/4306)
+* Fix a spurious asterisk being inserted on a new line if the previous line starts with an asterisk. [#5733](https://github.com/microsoft/vscode-cpptools/issues/5733)
+* Fix bug with placement new on Windows with gcc mode. [#6246](https://github.com/microsoft/vscode-cpptools/issues/6246)
* Fix size_t and placement new squiggles with clang on Windows. [#6573](https://github.com/microsoft/vscode-cpptools/issues/6573), [#7106](https://github.com/microsoft/vscode-cpptools/issues/7016)
* Fix an incorrect IntelliSense error squiggle when assigning to std::variant in clang mode. [#6623](https://github.com/microsoft/vscode-cpptools/issues/6623)
* Fix incorrect squiggle with range-v3 library. [#6639](https://github.com/microsoft/vscode-cpptools/issues/6639)
* Fix incorrect squiggle with auto parameters. [#6714](https://github.com/microsoft/vscode-cpptools/issues/6714)
-* Add @retval support to the simplified view of doc comments. [#6816](https://github.com/microsoft/vscode-cpptools/issues/6816)
* Fix (reimplement) nested document symbols. [#6830](https://github.com/microsoft/vscode-cpptools/issues/6830), [#7023](https://github.com/microsoft/vscode-cpptools/issues/7023), [#7024](https://github.com/microsoft/vscode-cpptools/issues/7024)
+* Fix detection of bitness for compilers targeting esp32. [#7034](https://github.com/microsoft/vscode-cpptools/issues/7034)
* Fix include completion not working after creating a new header with a non-standard extension until a reload is done. [#6987](https://github.com/microsoft/vscode-cpptools/issues/6987), [#7061](https://github.com/microsoft/vscode-cpptools/issues/7061)
* Fix endless CPU/memory usage in cpptools-srv when certain templated type aliases are used. [#7085](https://github.com/microsoft/vscode-cpptools/issues/7085)
* Fix "No symbols found" sometimes occurring when a document first opens. [#7103](https://github.com/microsoft/vscode-cpptools/issues/7103)
* Fix vcFormat formatting after typing brackets and a newline. [#7125](https://github.com/microsoft/vscode-cpptools/issues/7125)
* Fix a performance bug after formatting a document. [#7159](https://github.com/microsoft/vscode-cpptools/issues/7159)
+* Fix random crashes of cpptools-srv during shutdown. [#7161](https://github.com/microsoft/vscode-cpptools/issues/7161)
+* Fix a bug with relative "." paths in compile commands. [#7221](https://github.com/microsoft/vscode-cpptools/issues/7221)
+* Fix configuration issues with Unreal Engine projects. [#7222](https://github.com/microsoft/vscode-cpptools/issues/7222)
+* Fix bug when `${workspaceFolder}` is used in `compileCommands`. [#7241](https://github.com/microsoft/vscode-cpptools/issues/7241)
+ * Aleksa Pavlovic (@aleksa2808) [PR #7242](https://github.com/microsoft/vscode-cpptools/pull/7242)
+* Fix field requirements for custom configurations. [PR #7295](https://github.com/microsoft/vscode-cpptools/pull/7295)
+* Fix integrity hash checking of downloaded packages for the extension. [PR #7300](https://github.com/microsoft/vscode-cpptools/pull/7300)
+* Fix a bug preventing successful validation and receipt of browse configurations from custom configuration providers. [PR# 7131](https://github.com/microsoft/vscode-cpptools/pull/7313)
+* Fix a potential crash when editing at the end of a document.
+* Fix "Configure Task" selection to show root folder names for multiroot workspace [PR #7315](https://github.com/microsoft/vscode-cpptools/pull/7315)
## Version 1.2.2: February 25, 2021
### Bug Fixes
@@ -479,7 +489,7 @@
* Fix `compile_commands.json` prompt appearing when a configuration provider is used. [#3972](https://github.com/microsoft/vscode-cpptools/issues/3972)
* Improve IntelliSense performance with range-v3. [#4414](https://github.com/microsoft/vscode-cpptools/issues/4414)
* Fix template members not being nested under the template type in the Outline view. [#4466](https://github.com/microsoft/vscode-cpptools/issues/4466)
-* Fix an issue in which failure to invoke a compiler could result in a hang on Linux and Mac. [#4627](https://github.com/microsoft/vscode-cpptools/issues/4627)
+* Fix an issue in which failure to invoke a compiler could result in a loss of functionality on Linux and Mac. [#4627](https://github.com/microsoft/vscode-cpptools/issues/4627)
* Fix custom configurations sometimes not being applied to headers. [#4649](https://github.com/microsoft/vscode-cpptools/issues/4649)
* Fix headers opening into header-only TU's instead of TU's for candidate source files. [#4696](https://github.com/microsoft/vscode-cpptools/issues/4696)
* Fix the missing description of `C_Cpp.clang_format_style`.
@@ -510,7 +520,7 @@
* Fix child process creation when the Windows code page is set to a language with non-ASCII characters and there are non-ASCII characters in the extension's install path. [#1560](https://github.com/microsoft/vscode-cpptools/issues/1560)
* Fix path canonicalization of UNC paths to avoid duplicate files opening with different casing. [#2528](https://github.com/microsoft/vscode-cpptools/issues/2528), [#3980](https://github.com/microsoft/vscode-cpptools/issues/3980)
* Fix header opening without IntelliSense due to creation of a TU from a source file that includes the header in an inactive region. [#4320](https://github.com/microsoft/vscode-cpptools/issues/4320)
-* Fix a hang in the extension process that can occur when using a scope named 'interface'. [#4470](https://github.com/microsoft/vscode-cpptools/issues/4470)
+* Fix an infinite loop in the extension process that can occur when using a scope named 'interface'. [#4470](https://github.com/microsoft/vscode-cpptools/issues/4470)
* Fix an issue with the Rename UI that could cause the rename to not be applied. [#4504](https://github.com/microsoft/vscode-cpptools/issues/4504)
* Show an error message when a Rename fails due to the symbol not being found. [#4510](https://github.com/microsoft/vscode-cpptools/issues/4510)
* Fix `launch.json` creation due to localized strings containing quotes. [#4526](https://github.com/microsoft/vscode-cpptools/issues/4526)
@@ -527,7 +537,7 @@
### Bug Fixes
* Fix `launch.json` creation when using non-English display languages. [#4464](https://github.com/microsoft/vscode-cpptools/issues/4464)
* Fix CHS translation. [#4422](https://github.com/microsoft/vscode-cpptools/issues/4422)
-* Fix debugging hang when Windows 10 Beta Unicode (UTF-8) support is enabled. [#1527](https://github.com/microsoft/vscode-cpptools/issues/1527)
+* Fix debugging not working when Windows 10 Beta Unicode (UTF-8) support is enabled. [#1527](https://github.com/microsoft/vscode-cpptools/issues/1527)
## Version 0.26.0: October 15, 2019
### New Features
@@ -933,7 +943,7 @@
* Fix `Go to Definition` bug (missing symbols outside the workspace). [#2281](https://github.com/Microsoft/vscode-cpptools/issues/2281)
* Fix incorrect hover in enum definitions. [#2286](https://github.com/Microsoft/vscode-cpptools/issues/2286)
* Add a setting to silence configuration provider warnings. [#2292](https://github.com/Microsoft/vscode-cpptools/issues/2292)
-* Fix debugging async Visual C++ causing debugger to hang.
+* Fix debugging async Visual C++ causing the debugger to stop responding.
* Fix `main` snippet.
## Version 0.17.6: July 2, 2018
@@ -1201,8 +1211,8 @@
* Add `Edit Configurations...` command to the `Select a Configuration...` dropdown.
* Update Microsoft Visual C++ debugger to Visual Studio 2017 released components.
* Fix issue with showing wrong thread. [#550](https://github.com/Microsoft/vscode-cpptools/issues/550)
- * Fix issue with binaries compiled with /FASTLINK causing debugger to hang. [#484](https://github.com/Microsoft/vscode-cpptools/issues/484)
-* Fix issue in MinGW/Cygwin debugging where stop debugging causes VS Code to hang. [PR Microsoft/MIEngine#636](https://github.com/Microsoft/MIEngine/pull/636)
+ * Fix issue with binaries compiled with /FASTLINK causing the debugger to stop responding. [#484](https://github.com/Microsoft/vscode-cpptools/issues/484)
+* Fix issue in MinGW/Cygwin debugging where stop debugging causes VS Code to stop responding. [PR Microsoft/MIEngine#636](https://github.com/Microsoft/MIEngine/pull/636)
## Version 0.12.0: June 26, 2017
* The default IntelliSense engine now provides semantic-aware autocomplete suggestions for `.`, `->`, and `::` operators. [#13](https://github.com/Microsoft/vscode-cpptools/issues/13)
diff --git a/Extension/bin/common.json b/Extension/bin/common.json
index bf6e470e33..ae5b8b3ebf 100644
--- a/Extension/bin/common.json
+++ b/Extension/bin/common.json
@@ -26,8 +26,8 @@
"replace": "--using_directory\n$1"
},
{
- "match": "^/dE--header_only_fallback",
- "replace": "--header_only_fallback"
+ "match": "^/dE--(.*)",
+ "replace": "--$1"
}
]
}
\ No newline at end of file
diff --git a/Extension/i18n/chs/package.i18n.json b/Extension/i18n/chs/package.i18n.json
index 5f7f4dac79..87735c4145 100644
--- a/Extension/i18n/chs/package.i18n.json
+++ b/Extension/i18n/chs/package.i18n.json
@@ -170,9 +170,9 @@
"c_cpp.configuration.addNodeAddonIncludePaths.description": "当它们是依赖项时,从 nan 和 node-addon-api 添加 include 路径。",
"c_cpp.configuration.renameRequiresIdentifier.description": "如果为 true,则“重命名符号”将需要有效的 C/C++ 标识符。",
"c_cpp.configuration.autocompleteAddParentheses.description": "如果为 true,则自动完成功能将在函数调用后自动添加 \"(\",这种情况下还可以添加 \")\",具体取决于 \"editor.autoClosingBrackets\" 设置的值。",
- "c_cpp.configuration.filesExclude.description": "Configure glob patterns for excluding folders (and files if \"C_Cpp.exclusionPolicy\" is changed). These are specific to the C/C++ extension and are in addition to \"files.exclude\", but unlike \"files.exclude\" they are not removed from the Explorer view. Read more about glob patterns [here](https://code.visualstudio.com/docs/editor/codebasics#_advanced-search-options).",
- "c_cpp.configuration.filesExcludeBoolean.description": "The glob pattern to match file paths against. Set to true or false to enable or disable the pattern.",
- "c_cpp.configuration.filesExcludeWhen.description": "Additional check on the siblings of a matching file. Use $(basename) as variable for the matching file name.",
+ "c_cpp.configuration.filesExclude.description": "为排除文件夹(和文件配置 glob 模式,如果 \"C_Cpp. exclusionPolicy\" 已更改)。这些是除了\"files.exclude\" 之外的 C/C + + 特定扩展,但与 \"files.exclude\" 不同,他们不从资源管理器视图中删除。了解 glob 模式的详细信息 [here] (https://code.visualstudio.com/docs/editor/codebasics#_advanced-search-options)。",
+ "c_cpp.configuration.filesExcludeBoolean.description": "匹配文件路径所依据的 glob 模式。设置为 true 或 false 可启用或禁用该模式。",
+ "c_cpp.configuration.filesExcludeWhen.description": "对匹配文件的同级文件的其他检查。使用 $(basename) 作为匹配文件名的变量。",
"c_cpp.configuration.debugger.useBacktickCommandSubstitution.description": "如果为 true,调试程序 shell 命令替换将使用过时的反引号(`)。",
"c_cpp.contributes.views.cppReferencesView.title": "C/C++: 其他引用结果",
"c_cpp.debuggers.pipeTransport.description": "如果存在,这会指示调试程序使用其他可执行文件作为管道来连接到远程计算机,此管道将在 VS Code 和已启用 MI 的调试程序后端可执行文件(如 gdb)之间中继标准输入/输入。",
@@ -183,7 +183,7 @@
"c_cpp.debuggers.pipeTransport.pipeProgram.description": "要执行的完全限定的管道命令。",
"c_cpp.debuggers.pipeTransport.pipeArgs.description": "传递给管道程序配置连接的命令行参数。",
"c_cpp.debuggers.pipeTransport.pipeEnv.description": "传递给程序的环境变量。",
- "c_cpp.debuggers.pipeTransport.quoteArgs.description": "如果 pipeProgram 的单个参数包含字符(如空格或制表符),是否应引用它? 如果为 \"false\",则将不再自动引用调试程序命令。\n默认为 \"true\"。",
+ "c_cpp.debuggers.pipeTransport.quoteArgs.description": "如果 pipeProgram 的单个参数包含字符(如空格或制表符),是否应引用它? 如果为 “false”,则将不再自动引用调试程序命令。\r\n 默认为 “true”。",
"c_cpp.debuggers.logging.description": "用于确定应将哪些类型的消息记录到调试控制台的可选标志。",
"c_cpp.debuggers.logging.exceptions.description": "用于确定是否应将异常消息记录到调试控制台的可选标志。默认为 true。",
"c_cpp.debuggers.logging.moduleLoad.description": "用于确定是否应将模块加载事件记录到调试控制台的可选标志。默认为 true。",
@@ -208,7 +208,7 @@
"c_cpp.debuggers.cppdbg.visualizerFile.description": "调试此进程时要使用的 .natvis 文件。此选项与 GDB 整齐打印不兼容。如果使用此设置,请同时查看 \"showDisplayString\"。",
"c_cpp.debuggers.cppvsdbg.visualizerFile.description": "调试此进程时要使用的 .natvis 文件。",
"c_cpp.debuggers.showDisplayString.description": "指定了 visualizerFile 时,showDisplayString 将启用显示字符串。启用此选项可能会导致调试期间的性能下降。",
- "c_cpp.debuggers.environment.description": "要添加到程序环境的环境变量。示例: [ { \"name\": \"squid\", \"value\": \"clam\" } ]。",
+ "c_cpp.debuggers.environment.description": "要添加到程序环境的环境变量。示例: [ { \"name\": \"config\", \"value\": \"Debug\" } ],而不是 [ { \"config\": \"Debug\" } ]。",
"c_cpp.debuggers.envFile.description": "包含环境变量定义的文件的绝对路径。此文件具有每行由等号分隔的键值对。例如: 键=值",
"c_cpp.debuggers.additionalSOLibSearchPath.description": "要用于搜索 .so 文件的目录列表(以分号分隔)。示例: \"c:\\dir1;c:\\dir2\"。",
"c_cpp.debuggers.MIMode.description": "指示 MIDebugEngine 要连接到的控制台调试程序。允许的值为 \"gdb\"、\"lldb\"。",
diff --git a/Extension/i18n/chs/src/main.i18n.json b/Extension/i18n/chs/src/main.i18n.json
index 011d31f440..d78fec48d7 100644
--- a/Extension/i18n/chs/src/main.i18n.json
+++ b/Extension/i18n/chs/src/main.i18n.json
@@ -7,8 +7,7 @@
"architecture.not.supported": "体系结构 {0} 不受支持。",
"apline.containers.not.supported": "Alpine 容器不受支持。",
"download.button": "转到下载页",
- "native.binaries.mismatch.osx": "This Intel version of the extension has been installed. Since you are on an Apple Silicon Mac, we recommend installing the Apple Silicon version of the extension.",
- "native.binaries.not.supported": "扩展的此 {0} 版本与你的 OS 不兼容。请下载并安装扩展的“{1}”版本。",
+ "native.binaries.not.supported": "此 {0} {1} 版本的扩展与你的 OS 不兼容,请下载并安装 \"{2}\" 版本的扩展。",
"extension.installation.failed": "C/C++ 扩展安装失败。为使函数正常工作,需要修复或重新安装 C/C++ 语言功能的扩展。",
"remove.extension": "尝试修复",
"jason.files.missing": "C/C++ 扩展安装失败。为使函数正常工作,需要重新安装 C/C++ 语言功能的扩展。",
diff --git a/Extension/i18n/chs/src/packageManager.i18n.json b/Extension/i18n/chs/src/packageManager.i18n.json
index 685b0851e6..6e7afe59d4 100644
--- a/Extension/i18n/chs/src/packageManager.i18n.json
+++ b/Extension/i18n/chs/src/packageManager.i18n.json
@@ -26,9 +26,9 @@
"zip.file.error": "Zip 文件错误",
"create.directory.error": "创建目录时出错",
"zip.stream.error": "读取 zip 流时出错",
- "read.stream.error": "“读取”流中出错",
"unlink.error": "取消链接文件 {0} 时出错",
"rename.error": "重命名文件 {0} 时出错",
+ "read.stream.error": "“读取”流中出错",
"write.stream.error": "“写入”流中出错",
"file.already.exists": "警告: 文件“{0}”已存在,但未更新。"
}
\ No newline at end of file
diff --git a/Extension/i18n/cht/package.i18n.json b/Extension/i18n/cht/package.i18n.json
index 67c35cfb36..3fdbb62dca 100644
--- a/Extension/i18n/cht/package.i18n.json
+++ b/Extension/i18n/cht/package.i18n.json
@@ -170,9 +170,9 @@
"c_cpp.configuration.addNodeAddonIncludePaths.description": "當 nan 和 node-addon-api 為相依性時,從中新增 include 路徑。",
"c_cpp.configuration.renameRequiresIdentifier.description": "若為 true,則「重新命名符號」需要有效的 C/C++ 識別碼。",
"c_cpp.configuration.autocompleteAddParentheses.description": "若為 true,自動完成將會在函式呼叫之後自動新增 \"(\",在這種情況下也可能會新增 \")\",取決於 \"editor.autoClosingBrackets\" 設定的值。",
- "c_cpp.configuration.filesExclude.description": "Configure glob patterns for excluding folders (and files if \"C_Cpp.exclusionPolicy\" is changed). These are specific to the C/C++ extension and are in addition to \"files.exclude\", but unlike \"files.exclude\" they are not removed from the Explorer view. Read more about glob patterns [here](https://code.visualstudio.com/docs/editor/codebasics#_advanced-search-options).",
- "c_cpp.configuration.filesExcludeBoolean.description": "The glob pattern to match file paths against. Set to true or false to enable or disable the pattern.",
- "c_cpp.configuration.filesExcludeWhen.description": "Additional check on the siblings of a matching file. Use $(basename) as variable for the matching file name.",
+ "c_cpp.configuration.filesExclude.description": "設定 Glob 模式以排除資料夾 (如果變更 \"C_Cpp.exclusionPolicy\",則排除檔案)。這些模式為 C/C++ 延伸模組所特有,是 \"files.exclude\" 的補充,但與 \"files.exclude\" 不同,系統不會將它們從 Explorer 檢視中移除。請在 [此處](https://code.visualstudio.com/docs/editor/codebasics#_advanced-search-options) 了解 Glob 模式的詳細資訊。",
+ "c_cpp.configuration.filesExcludeBoolean.description": "要符合檔案路徑的 Glob 模式。設為 True 或 False 可啟用或停用模式。",
+ "c_cpp.configuration.filesExcludeWhen.description": "在相符檔案同層級上額外的檢查。請使用 $(basename) 作為相符檔案名稱的變數。",
"c_cpp.configuration.debugger.useBacktickCommandSubstitution.description": "若為 true,偵錯工具殼層命令替代將會使用已淘汰的反引號 (`)。",
"c_cpp.contributes.views.cppReferencesView.title": "C/C++: 其他參考結果",
"c_cpp.debuggers.pipeTransport.description": "出現時,會指示偵錯工具使用另一個可執行檔來連線至遠端電腦,該管道會在 VS Code 與 MI 啟用偵錯工具後端可執行檔之間傳送標準輸入/輸出 (例如 gdb)。",
@@ -183,7 +183,7 @@
"c_cpp.debuggers.pipeTransport.pipeProgram.description": "要執行的完整管道命令。",
"c_cpp.debuggers.pipeTransport.pipeArgs.description": "傳遞至管道程式以設定連線的命令列引數。",
"c_cpp.debuggers.pipeTransport.pipeEnv.description": "傳遞至管道程式的環境變數。",
- "c_cpp.debuggers.pipeTransport.quoteArgs.description": "若 pipeProgram 的個別引數包含字元 (例如空格或定位字元),是否應該加上引號? 若設定為 'false',不會再自動為偵錯工具命令加上引號。\n預設為 'true'。",
+ "c_cpp.debuggers.pipeTransport.quoteArgs.description": "若 pipeProgram 的個別引數包含字元 (例如空格或定位字元),是否應該加上引號? 若設定為 'false',不會再自動為偵錯工具命令加上引號。\r\n預設為 'true'。",
"c_cpp.debuggers.logging.description": "選擇性旗標,用以判斷應記錄到偵錯主控台的訊息類型。",
"c_cpp.debuggers.logging.exceptions.description": "選擇性旗標,用以判斷是否應將例外狀況訊息記錄到偵錯主控台。預設為 true。",
"c_cpp.debuggers.logging.moduleLoad.description": "選擇性旗標,用以判斷是否應將模組載入事件記錄到偵錯主控台。預設為 true。",
@@ -208,7 +208,7 @@
"c_cpp.debuggers.cppdbg.visualizerFile.description": "偵錯此處理序時要使用的 .natvis 檔案。此選項與 GDB 美化顯示不相容。若使用此設定,也請參閱 \"showDisplayString\"。",
"c_cpp.debuggers.cppvsdbg.visualizerFile.description": "偵錯此處理序時要使用的 .natvis 檔案。",
"c_cpp.debuggers.showDisplayString.description": "指定 visualizerFile 時,showDisplayString 會啟用顯示字串。開啟此選項可能會導致偵錯期間的效能變慢。",
- "c_cpp.debuggers.environment.description": "要新增至程式環境的環境變數。範例: [ { \"name\": \"squid\", \"value\": \"clam\" } ]。",
+ "c_cpp.debuggers.environment.description": "要新增至程式環境的環境變數。範例: [ { \"name\": \"config\", \"value\": \"Debug\" } ],非 [ { \"config\": \"Debug\" } ]。",
"c_cpp.debuggers.envFile.description": "包含環境變數定義之檔案的絕對路徑。此檔案具有以等號分隔每行的索引鍵值組。例如「鍵=值」",
"c_cpp.debuggers.additionalSOLibSearchPath.description": "要用於搜尋 .so 檔案的目錄清單 (以分號分隔)。範例: \"c:\\dir1;c:\\dir2\"。",
"c_cpp.debuggers.MIMode.description": "表示 MIDebugEngine 將連線的主控台偵錯工具。允許的值為 \"gdb\" \"lldb\"。",
diff --git a/Extension/i18n/cht/src/main.i18n.json b/Extension/i18n/cht/src/main.i18n.json
index 62850038cd..8f8102bc32 100644
--- a/Extension/i18n/cht/src/main.i18n.json
+++ b/Extension/i18n/cht/src/main.i18n.json
@@ -7,8 +7,7 @@
"architecture.not.supported": "不支援架構 {0}。 ",
"apline.containers.not.supported": "不支援 Alpine 容器。",
"download.button": "前往 [下載\ 頁面",
- "native.binaries.mismatch.osx": "This Intel version of the extension has been installed. Since you are on an Apple Silicon Mac, we recommend installing the Apple Silicon version of the extension.",
- "native.binaries.not.supported": "此 {0} 版延伸模組與您的 OS 不相容。請下載並安裝 \"{1}\" 版本的延伸模組。",
+ "native.binaries.not.supported": "此 {0} {1} 版延伸模組與您的作業系統不相容。請下載並安裝 \"{2}\" 版延伸模組。",
"extension.installation.failed": "無法成功安裝 C/C++ 延伸模組。您必須修復或重新安裝 C/C++ 語言功能的延伸模組,才可正常運作。",
"remove.extension": "嘗試修復",
"jason.files.missing": "無法成功安裝 C/C++ 延伸模組。您必須重新安裝 C/C++ 語言功能的延伸模組,才可正常運作。",
diff --git a/Extension/i18n/cht/src/packageManager.i18n.json b/Extension/i18n/cht/src/packageManager.i18n.json
index 9c015845c7..0d01797b4c 100644
--- a/Extension/i18n/cht/src/packageManager.i18n.json
+++ b/Extension/i18n/cht/src/packageManager.i18n.json
@@ -26,9 +26,9 @@
"zip.file.error": "Zip 檔案錯誤",
"create.directory.error": "建立目錄時發生錯誤",
"zip.stream.error": "讀取 zip 串流時發生錯誤",
- "read.stream.error": "讀取串流中發生錯誤",
"unlink.error": "將檔案 {0} 取消連結時發生錯誤",
"rename.error": "重新命名檔案 {0} 時發生錯誤",
+ "read.stream.error": "讀取串流中發生錯誤",
"write.stream.error": "寫入串流中發生錯誤",
"file.already.exists": "警告: 檔案 '{0}' 已經存在但未更新。"
}
\ No newline at end of file
diff --git a/Extension/i18n/csy/package.i18n.json b/Extension/i18n/csy/package.i18n.json
index 8bf303fcd7..e67d72f9ad 100644
--- a/Extension/i18n/csy/package.i18n.json
+++ b/Extension/i18n/csy/package.i18n.json
@@ -170,9 +170,9 @@
"c_cpp.configuration.addNodeAddonIncludePaths.description": "Pokud existují závislosti, přidejte cesty pro zahrnuté soubory z nan a node-addon-api.",
"c_cpp.configuration.renameRequiresIdentifier.description": "Když se tato hodnota nastaví na true, operace Přejmenovat symbol bude vyžadovat platný identifikátor C/C++.",
"c_cpp.configuration.autocompleteAddParentheses.description": "Pokud je true, automatické dokončování automaticky přidá za volání funkcí znak (. V takovém případě se může přidat i znak ), záleží na hodnotě nastavení editor.autoClosingBrackets.",
- "c_cpp.configuration.filesExclude.description": "Configure glob patterns for excluding folders (and files if \"C_Cpp.exclusionPolicy\" is changed). These are specific to the C/C++ extension and are in addition to \"files.exclude\", but unlike \"files.exclude\" they are not removed from the Explorer view. Read more about glob patterns [here](https://code.visualstudio.com/docs/editor/codebasics#_advanced-search-options).",
- "c_cpp.configuration.filesExcludeBoolean.description": "The glob pattern to match file paths against. Set to true or false to enable or disable the pattern.",
- "c_cpp.configuration.filesExcludeWhen.description": "Additional check on the siblings of a matching file. Use $(basename) as variable for the matching file name.",
+ "c_cpp.configuration.filesExclude.description": "Nakonfigurujte vzory glob pro vyloučení složek (a souborů, pokud se změní C_Cpp.exclusionPolicy). Ty jsou specifické pro rozšíření C/C++ a doplňují files.exclude, ale na rozdíl od files.exclude se neodebírají ze zobrazení Průzkumník. Přečtěte si další informace o vzorech glob [tady] (https://code.visualstudio.com/docs/editor/codebasics#_advanced-search-options).",
+ "c_cpp.configuration.filesExcludeBoolean.description": "Vzor glob pro hledání shod s cestami k souborům. Pokud chcete vzor povolit, nastavte hodnotu true, pokud ho chcete zakázat, nastavte hodnotu false.",
+ "c_cpp.configuration.filesExcludeWhen.description": "Další kontrola položek na stejné úrovni u odpovídajícího souboru. Jako proměnnou názvu odpovídajícího souboru použijte $(basename).",
"c_cpp.configuration.debugger.useBacktickCommandSubstitution.description": "Když se nastaví na true, nahrazování příkazů shellu ladicího programu bude používat starou verzi obrácené čárky (`).",
"c_cpp.contributes.views.cppReferencesView.title": "C/C++: výsledky jiných odkazů",
"c_cpp.debuggers.pipeTransport.description": "Pokud je k dispozici, předá ladicímu programu informaci, aby se připojil ke vzdálenému počítači pomocí dalšího spustitelného souboru jako kanál, který bude přenášet standardní vstup a výstup mezi nástrojem VS Code a spustitelným souborem back-endu ladicího programu s podporou MI (třeba gdb).",
@@ -183,7 +183,7 @@
"c_cpp.debuggers.pipeTransport.pipeProgram.description": "Plně kvalifikovaný příkaz kanálu, který se má provést",
"c_cpp.debuggers.pipeTransport.pipeArgs.description": "Argumenty příkazového řádku, které se předávají do cílového programu, aby se nakonfigurovalo připojení",
"c_cpp.debuggers.pipeTransport.pipeEnv.description": "Proměnné prostředí, které se předávají do cílového programu",
- "c_cpp.debuggers.pipeTransport.quoteArgs.description": "Pokud jednotlivé argumenty pro pipeProgram obsahují znaky (například mezery nebo tabulátory), mají se používat uvozovky? Pokud se nastaví hodnota false, nebudou se už v příkazu ladicího programu automaticky používat uvozovky. \nVýchozí hodnota je true.",
+ "c_cpp.debuggers.pipeTransport.quoteArgs.description": "Pokud jednotlivé argumenty pro pipeProgram obsahují znaky (například mezery nebo tabulátory), mají se používat uvozovky? Pokud se nastaví hodnota false, nebudou se už v příkazu ladicího programu automaticky používat uvozovky. \r\nVýchozí hodnota je true.",
"c_cpp.debuggers.logging.description": "Nepovinné příznaky, které určují, které typy zpráv se mají protokolovat do konzoly ladění",
"c_cpp.debuggers.logging.exceptions.description": "Nepovinný příznak, který určuje, jestli se do konzoly ladění mají protokolovat zprávy výjimek. Výchozí hodnota je true.",
"c_cpp.debuggers.logging.moduleLoad.description": "Nepovinný příznak, který určuje, jestli se do konzoly ladění mají protokolovat události načítání modulu. Výchozí hodnota je true.",
@@ -208,7 +208,7 @@
"c_cpp.debuggers.cppdbg.visualizerFile.description": "Soubor .natvis, který se použije při ladění tohoto procesu. Tato možnost není kompatibilní s přehledným výpisem GDB. Pokud používáte toto nastavení, podívejte se i na showDisplayString.",
"c_cpp.debuggers.cppvsdbg.visualizerFile.description": "Soubor .natvis, který se použije při ladění tohoto procesu.",
"c_cpp.debuggers.showDisplayString.description": "Když se zadá visualizerFile, showDisplayString povolí zobrazovaný řetězec. Když se tato možnost zapne, může to způsobit nižší výkon při ladění.",
- "c_cpp.debuggers.environment.description": "Proměnné prostředí, které se mají přidat do prostředí pro program. Příklad: [ { \"name\": \"squid\", \"value\": \"clam\" } ]",
+ "c_cpp.debuggers.environment.description": "Proměnné prostředí, které se mají přidat do prostředí pro program. Příklad: [ { \"name\": \"config\", \"value\": \"Debug\" } ], ne [ { \"config\": \"Debug\" } ].",
"c_cpp.debuggers.envFile.description": "Absolutní cesta k souboru, který obsahuje definice proměnných prostředí. Tento soubor obsahuje na každém řádku pár klíč-hodnota rozdělený znakem rovnítka. Např. KLÍČ=HODNOTA.",
"c_cpp.debuggers.additionalSOLibSearchPath.description": "Seznam středníkem oddělených adresářů, ve kterých se budou hledat soubory .so. Příklad: c:\\dir1;c:\\dir2",
"c_cpp.debuggers.MIMode.description": "Určuje ladicí program konzoly, ke kterému se připojí MIDebugEngine. Povolené hodnoty jsou gdb a lldb.",
diff --git a/Extension/i18n/csy/src/main.i18n.json b/Extension/i18n/csy/src/main.i18n.json
index 8067153719..452d30b243 100644
--- a/Extension/i18n/csy/src/main.i18n.json
+++ b/Extension/i18n/csy/src/main.i18n.json
@@ -7,8 +7,7 @@
"architecture.not.supported": "Architektura {0} se nepodporuje. ",
"apline.containers.not.supported": "Kontejnery Alpine se nepodporují.",
"download.button": "Přejít na stránku stahování",
- "native.binaries.mismatch.osx": "This Intel version of the extension has been installed. Since you are on an Apple Silicon Mac, we recommend installing the Apple Silicon version of the extension.",
- "native.binaries.not.supported": "Tato verze rozšíření pro {0} není kompatibilní s vaším operačním systémem. Stáhněte a nainstalujte si prosím verzi rozšíření {1}.",
+ "native.binaries.not.supported": "Tato verze rozšíření pro {0} {1} není kompatibilní s vaším operačním systémem. Stáhněte a nainstalujte si prosím verzi rozšíření {2}.",
"extension.installation.failed": "Nepovedlo se úspěšně nainstalovat rozšíření jazyka C/C++. Aby rozšíření pro funkce jazyka C/C++ fungovalo správně, bude nutné ho opravit nebo přeinstalovat.",
"remove.extension": "Pokusit se o opravu",
"jason.files.missing": "Nepovedlo se úspěšně nainstalovat rozšíření jazyka C/C++. Aby rozšíření pro funkce jazyka C/C++ fungovalo správně, bude nutné ho přeinstalovat.",
diff --git a/Extension/i18n/csy/src/packageManager.i18n.json b/Extension/i18n/csy/src/packageManager.i18n.json
index 4078230ed1..5a9815dfdd 100644
--- a/Extension/i18n/csy/src/packageManager.i18n.json
+++ b/Extension/i18n/csy/src/packageManager.i18n.json
@@ -26,9 +26,9 @@
"zip.file.error": "Chyba souboru ZIP",
"create.directory.error": "Při vytváření adresáře došlo k chybě.",
"zip.stream.error": "Chyba při čtení streamu ZIP",
- "read.stream.error": "Ve streamu pro čtení došlo k chybě.",
"unlink.error": "Při rušení propojení souboru {0} došlo k chybě.",
"rename.error": "Při přejmenování souboru {0} došlo k chybě.",
+ "read.stream.error": "Ve streamu pro čtení došlo k chybě.",
"write.stream.error": "Ve streamu pro zápis došlo k chybě.",
"file.already.exists": "Upozornění: Soubor {0} už existuje a neaktualizoval se."
}
\ No newline at end of file
diff --git a/Extension/i18n/deu/package.i18n.json b/Extension/i18n/deu/package.i18n.json
index 3bdd52987f..9c1a535b78 100644
--- a/Extension/i18n/deu/package.i18n.json
+++ b/Extension/i18n/deu/package.i18n.json
@@ -23,8 +23,8 @@
"c_cpp.command.vcpkgClipboardInstallSuggested.title": "vcpkg-Installationsbefehl in Zwischenablage kopieren",
"c_cpp.command.vcpkgOnlineHelpSuggested.title": "vcpkg-Hilfeseite aufrufen",
"c_cpp.command.generateEditorConfig.title": "EditorConfig-Inhalte aus VC-Formateinstellungen generieren",
- "c_cpp.command.GoToNextDirectiveInGroup.title": "Go to next preprocessor directive in conditional group",
- "c_cpp.command.GoToPrevDirectiveInGroup.title": "Go to previous preprocessor directive in conditional group",
+ "c_cpp.command.GoToNextDirectiveInGroup.title": "Zur nächsten Präprozessoranweisung in bedingter Gruppe wechseln",
+ "c_cpp.command.GoToPrevDirectiveInGroup.title": "Zur vorherigen Präprozessoranweisung in bedingter Gruppe wechseln",
"c_cpp.configuration.formatting.description": "Konfiguriert das Formatierungsmodul.",
"c_cpp.configuration.formatting.clangFormat.description": "Zum Formatieren von Code wird \"clang-format\" verwendet.",
"c_cpp.configuration.formatting.vcFormat.description": "Das Visual C++-Formatierungsmodul wird zum Formatieren von Code verwendet.",
@@ -170,9 +170,9 @@
"c_cpp.configuration.addNodeAddonIncludePaths.description": "Fügen Sie Includepfade aus \"nan\" und \"node-addon-api\" hinzu, wenn es sich um Abhängigkeiten handelt.",
"c_cpp.configuration.renameRequiresIdentifier.description": "Bei TRUE ist für \"Symbol umbenennen\" ein gültiger C-/C++-Bezeichner erforderlich.",
"c_cpp.configuration.autocompleteAddParentheses.description": "Bei TRUE fügt AutoVervollständigen automatisch \"(\" nach Funktionsaufrufen hinzu. In diesem Fall kann \")\" abhängig vom Wert der Einstellung \"editor.autoClosingBrackets\" ebenfalls hinzugefügt werden.",
- "c_cpp.configuration.filesExclude.description": "Configure glob patterns for excluding folders (and files if \"C_Cpp.exclusionPolicy\" is changed). These are specific to the C/C++ extension and are in addition to \"files.exclude\", but unlike \"files.exclude\" they are not removed from the Explorer view. Read more about glob patterns [here](https://code.visualstudio.com/docs/editor/codebasics#_advanced-search-options).",
- "c_cpp.configuration.filesExcludeBoolean.description": "The glob pattern to match file paths against. Set to true or false to enable or disable the pattern.",
- "c_cpp.configuration.filesExcludeWhen.description": "Additional check on the siblings of a matching file. Use $(basename) as variable for the matching file name.",
+ "c_cpp.configuration.filesExclude.description": "Konfigurieren Sie Globmuster für das Ausschließen von Ordnern (und Dateien, wenn \"C_Cpp.exclusionPolicy\" geändert wird). Diese sind spezifisch für die C/C++-Erweiterung und zusätzlich zu \"files.exclude\", aber im Gegensatz zu \"files.exclude\" werden sie nicht aus der Explorer-Ansicht entfernt. Weitere Informationen zu Globmustern finden Sie [hier](https://code.visualstudio.com/docs/editor/codebasics#_advanced-search-options).",
+ "c_cpp.configuration.filesExcludeBoolean.description": "Das Globmuster, mit dem Dateipfade verglichen werden sollen. Legen Sie diesen Wert auf \"true\" oder \"false\" fest, um das Muster zu aktivieren bzw. zu deaktivieren.",
+ "c_cpp.configuration.filesExcludeWhen.description": "Zusätzliche Überprüfung der gleichgeordneten Elemente einer entsprechenden Datei. Verwenden Sie \"$(basename)\" als Variable für den entsprechenden Dateinamen.",
"c_cpp.configuration.debugger.useBacktickCommandSubstitution.description": "Bei Festlegung auf TRUE verwendet die Befehlsersetzung der Debugger-Shell obsolete Backtick-Zeichen (`).",
"c_cpp.contributes.views.cppReferencesView.title": "C/C++: andere Verweisergebnisse",
"c_cpp.debuggers.pipeTransport.description": "Falls angegeben, weist diese Option den Debugger an, eine Verbindung mit einem Remotecomputer mithilfe einer anderen ausführbaren Datei als Pipe herzustellen, die Standardeingaben/-ausgaben zwischen VS Code und der ausführbaren Back-End-Datei für den MI-fähigen Debugger weiterleitet (z. B. gdb).",
@@ -183,7 +183,7 @@
"c_cpp.debuggers.pipeTransport.pipeProgram.description": "Der vollqualifizierte auszuführende Pipebefehl.",
"c_cpp.debuggers.pipeTransport.pipeArgs.description": "Befehlszeilenargumente, die zum Konfigurieren der Verbindung an das Pipeprogramm übergeben werden.",
"c_cpp.debuggers.pipeTransport.pipeEnv.description": "Umgebungsvariablen, die an das Pipeprogramm übergeben werden.",
- "c_cpp.debuggers.pipeTransport.quoteArgs.description": "Gibt an, ob Anführungszeichen gesetzt werden sollen, wenn die einzelnen pipeProgram-Argumente Zeichen enthalten (z. B. Leerzeichen oder Tabstopps). Bei Einstellung auf \"false\" wird der Debuggerbefehl nicht mehr automatisch in Anführungszeichen gesetzt. \nDer Standardwert ist \"true\".",
+ "c_cpp.debuggers.pipeTransport.quoteArgs.description": "Gibt an, ob Anführungszeichen gesetzt werden sollen, wenn die einzelnen pipeProgram-Argumente Zeichen enthalten (z. B. Leerzeichen oder Tabstopps). Bei Einstellung auf \"false\" wird der Debuggerbefehl nicht mehr automatisch in Anführungszeichen gesetzt. \r\nDer Standardwert ist \"true\".",
"c_cpp.debuggers.logging.description": "Optionale Flags zum Festlegen, welche Nachrichtentypen in der Debugging-Konsole protokolliert werden sollen.",
"c_cpp.debuggers.logging.exceptions.description": "Optionales Flag zum Festlegen, ob Ausnahmemeldungen in der Debugging-Konsole protokolliert werden sollen. Der Standardwert ist TRUE.",
"c_cpp.debuggers.logging.moduleLoad.description": "Optionales Flag zum Festlegen, ob Modulladeereignisse in der Debugging-Konsole protokolliert werden sollen. Der Standardwert ist TRUE.",
@@ -208,7 +208,7 @@
"c_cpp.debuggers.cppdbg.visualizerFile.description": "Die .natvis-Datei, die beim Debuggen dieses Prozesses verwendet werden soll. Diese Option ist nicht mit der automatischen Strukturierung und Einrückung von GDB kompatibel. Weitere Informationen finden Sie auch bei \"showDisplayString\", wenn Sie diese Einstellung verwenden.",
"c_cpp.debuggers.cppvsdbg.visualizerFile.description": "Die .natvis-Datei, die beim Debuggen dieses Prozesses verwendet werden soll.",
"c_cpp.debuggers.showDisplayString.description": "Wenn eine visualizerFile angegeben wird, wird die Anzeigezeichenfolge von showDisplayString aktiviert. Durch Aktivieren dieser Option kann die Leistung während des Debuggings verlangsamt werden.",
- "c_cpp.debuggers.environment.description": "Umgebungsvariablen, die der Umgebung für das Programm hinzugefügt werden sollen. Beispiel: [ { \"name\": \"squid\", \"value\": \"clam\" } ].",
+ "c_cpp.debuggers.environment.description": "Umgebungsvariablen, die der Umgebung für das Programm hinzugefügt werden sollen. Beispiel: [ { \"name\": \"config\", \"value\": \"Debug\" } ], not [ { \"config\": \"Debug\" } ].",
"c_cpp.debuggers.envFile.description": "Absoluter Pfad zu einer Datei mit Umgebungsvariablendefinitionen. Für diese Datei sind Schlüssel-Wert-Paare pro Zeile durch ein Gleichheitszeichen getrennt. Beispiel: SCHLÜSSEL=WERT",
"c_cpp.debuggers.additionalSOLibSearchPath.description": "Durch Semikolons getrennte Liste von Verzeichnissen, die für die Suche nach SO-Dateien verwendet werden sollen. Beispiel: \"c:\\dir1;c:\\dir2\".",
"c_cpp.debuggers.MIMode.description": "Hiermit wird der Konsolendebugger angegeben, mit dem die MIDebugEngine eine Verbindung herstellt. Zulässige Werte sind \"gdb\" und \"lldb\".",
diff --git a/Extension/i18n/deu/src/main.i18n.json b/Extension/i18n/deu/src/main.i18n.json
index 55a8d05e3a..e0a2fe50fd 100644
--- a/Extension/i18n/deu/src/main.i18n.json
+++ b/Extension/i18n/deu/src/main.i18n.json
@@ -7,8 +7,7 @@
"architecture.not.supported": "Die Architektur \"{0}\" wird nicht unterstützt. ",
"apline.containers.not.supported": "Alpine-Container werden nicht unterstützt.",
"download.button": "Gehe zu Downloadseite",
- "native.binaries.mismatch.osx": "This Intel version of the extension has been installed. Since you are on an Apple Silicon Mac, we recommend installing the Apple Silicon version of the extension.",
- "native.binaries.not.supported": "Diese Version für {0} der Erweiterung ist nicht mit Ihrem Betriebssystem kompatibel. Laden Sie Version {1} der Erweiterung herunter, und installieren Sie sie.",
+ "native.binaries.not.supported": "Diese Version {0} {1} der Erweiterung ist nicht mit Ihrem Betriebssystem kompatibel. Laden Sie Version \"{2}\" der Erweiterung herunter, und installieren Sie sie.",
"extension.installation.failed": "Die C/C++-Erweiterung konnte nicht erfolgreich installiert werden. Sie müssen die Erweiterung für C/C++-Sprachfeatures reparieren oder neu installieren, damit die Erweiterung ordnungsgemäß funktioniert.",
"remove.extension": "Reparaturversuch",
"jason.files.missing": "Die C/C++-Erweiterung konnte nicht erfolgreich installiert werden. Sie müssen die Erweiterung für C/C++-Sprachfeatures neu installieren, damit die Erweiterung ordnungsgemäß funktioniert.",
diff --git a/Extension/i18n/deu/src/nativeStrings.i18n.json b/Extension/i18n/deu/src/nativeStrings.i18n.json
index 1865a19949..0e95c8c460 100644
--- a/Extension/i18n/deu/src/nativeStrings.i18n.json
+++ b/Extension/i18n/deu/src/nativeStrings.i18n.json
@@ -208,9 +208,9 @@
"unrecognized_language_standard_version": "Die Compilerabfrage hat eine unbekannte Sprachstandardversion zurückgegeben. Stattdessen wird die neueste unterstützte Version verwendet.",
"intellisense_process_crash_detected": "IntelliSense-Prozessabsturz erkannt.",
"return_values_label": "Rückgabewerte:",
- "nvcc_compiler_not_found": "Unable to locate nvcc compiler: {0}",
- "nvcc_host_compiler_not_found": "Unable to locate nvcc host compiler: {0}",
- "invoking_nvcc": "Invoking nvcc with command line: {0}",
- "nvcc_host_compile_command_not_found": "Unable to find host compile command in output of nvcc.",
- "unable_to_locate_forced_include": "Unable to locate forced include: {0}"
+ "nvcc_compiler_not_found": "Der nvcc-Compiler wurde nicht gefunden: {0}",
+ "nvcc_host_compiler_not_found": "Der nvcc-Hostcompiler wurde nicht gefunden: {0}",
+ "invoking_nvcc": "nvcc wird über Befehlszeile aufgerufen: {0}",
+ "nvcc_host_compile_command_not_found": "Der Hostkompilierbefehl wurde in der Ausgabe von nvcc nicht gefunden.",
+ "unable_to_locate_forced_include": "Erzwungene Includedatei wurde nicht gefunden: {0}"
}
\ No newline at end of file
diff --git a/Extension/i18n/deu/src/packageManager.i18n.json b/Extension/i18n/deu/src/packageManager.i18n.json
index cae6caf18f..2cf3c8daee 100644
--- a/Extension/i18n/deu/src/packageManager.i18n.json
+++ b/Extension/i18n/deu/src/packageManager.i18n.json
@@ -26,9 +26,9 @@
"zip.file.error": "Fehler in ZIP-Datei.",
"create.directory.error": "Fehler beim Erstellen des Verzeichnisses.",
"zip.stream.error": "Fehler beim Lesen des ZIP-Datenstroms.",
- "read.stream.error": "Fehler im Lesedatenstrom.",
"unlink.error": "Fehler beim Aufheben der Verknüpfung für die Datei \"{0}\".",
"rename.error": "Fehler beim Umbenennen der Datei\"{0}\".",
+ "read.stream.error": "Fehler im Lesedatenstrom.",
"write.stream.error": "Fehler im Schreibdatenstrom.",
"file.already.exists": "Warnung: Die Datei \"{0}\" ist bereits vorhanden und wurde nicht aktualisiert."
}
\ No newline at end of file
diff --git a/Extension/i18n/esn/package.i18n.json b/Extension/i18n/esn/package.i18n.json
index 013c97537d..a3e59c1d6d 100644
--- a/Extension/i18n/esn/package.i18n.json
+++ b/Extension/i18n/esn/package.i18n.json
@@ -23,8 +23,8 @@
"c_cpp.command.vcpkgClipboardInstallSuggested.title": "Copiar el comando vcpkg install en el Portapapeles",
"c_cpp.command.vcpkgOnlineHelpSuggested.title": "Visitar la página de ayuda de vcpkg",
"c_cpp.command.generateEditorConfig.title": "Generar contenido de EditorConfig a partir de la configuración de formato de VC",
- "c_cpp.command.GoToNextDirectiveInGroup.title": "Go to next preprocessor directive in conditional group",
- "c_cpp.command.GoToPrevDirectiveInGroup.title": "Go to previous preprocessor directive in conditional group",
+ "c_cpp.command.GoToNextDirectiveInGroup.title": "Ir a la directiva del preprocesador siguiente en el grupo condicional",
+ "c_cpp.command.GoToPrevDirectiveInGroup.title": "Ir a la directiva del preprocesador anterior en el grupo condicional",
"c_cpp.configuration.formatting.description": "Configura el motor de formato",
"c_cpp.configuration.formatting.clangFormat.description": "El archivo clang-format se usará para formatear el código.",
"c_cpp.configuration.formatting.vcFormat.description": "El motor de formato de Visual C++ se usará para formatear el código.",
@@ -170,9 +170,9 @@
"c_cpp.configuration.addNodeAddonIncludePaths.description": "Agregue rutas de acceso de inclusión de nan y node-addon-api cuando sean dependencias.",
"c_cpp.configuration.renameRequiresIdentifier.description": "Si es true, \"Cambiar el nombre del símbolo\" requerirá un identificador de C/C++ válido.",
"c_cpp.configuration.autocompleteAddParentheses.description": "Si es true, la opción de autocompletar agregará \"(\" de forma automática después de las llamadas a funciones, en cuyo caso puede que también se agregue \")\", en función del valor de la configuración de \"editor.autoClosingBrackets\".",
- "c_cpp.configuration.filesExclude.description": "Configure glob patterns for excluding folders (and files if \"C_Cpp.exclusionPolicy\" is changed). These are specific to the C/C++ extension and are in addition to \"files.exclude\", but unlike \"files.exclude\" they are not removed from the Explorer view. Read more about glob patterns [here](https://code.visualstudio.com/docs/editor/codebasics#_advanced-search-options).",
- "c_cpp.configuration.filesExcludeBoolean.description": "The glob pattern to match file paths against. Set to true or false to enable or disable the pattern.",
- "c_cpp.configuration.filesExcludeWhen.description": "Additional check on the siblings of a matching file. Use $(basename) as variable for the matching file name.",
+ "c_cpp.configuration.filesExclude.description": "Configure patrones globales para excluir carpetas (y archivos si se cambia \"C_Cpp. exclusionPolicy\"). Estos son específicos de la extensión de C/C++ y se agregan a \"files. Exclude\", pero a diferencia de \"files. Exclude\" no se quitan de la vista del explorador. Más información acerca de los patrones de globales [here] (https://code.visualstudio.com/docs/editor/codebasics#_advanced-search-options).",
+ "c_cpp.configuration.filesExcludeBoolean.description": "El patrón global con el que se harán coincidir las rutas de acceso de los archivos. Establézcalo en true o false para habilitarlo o deshabilitarlo.",
+ "c_cpp.configuration.filesExcludeWhen.description": "Comprobación adicional de los elementos del mismo nivel de un archivo coincidente. Use $(nombreBase) como variable para el nombre de archivo que coincide.",
"c_cpp.configuration.debugger.useBacktickCommandSubstitution.description": "Si es true, la sustitución de comandos del shell del depurador usará la marca de comilla simple (') obsoleta.",
"c_cpp.contributes.views.cppReferencesView.title": "C/C++: resultados de otras referencias",
"c_cpp.debuggers.pipeTransport.description": "Cuando se especifica, indica al depurador que se conecte a un equipo remoto usando otro archivo ejecutable como canalización que retransmitirá la entrada o la salida estándar entre VS Code y el archivo ejecutable del back-end del depurador habilitado para MI (por ejemplo, gdb).",
@@ -183,7 +183,7 @@
"c_cpp.debuggers.pipeTransport.pipeProgram.description": "Comando de canalización completo para ejecutar.",
"c_cpp.debuggers.pipeTransport.pipeArgs.description": "Argumentos de la línea de comandos que se pasan al programa de canalización para configurar la conexión.",
"c_cpp.debuggers.pipeTransport.pipeEnv.description": "Variables de entorno que se pasan al programa de canalización.",
- "c_cpp.debuggers.pipeTransport.quoteArgs.description": "Si los argumentos individuales de pipeProgram contienen caracteres (como espacios o tabulaciones), ¿debe incluirse entre comillas? Si es \"false\", el comando del depurador dejará de incluirse entre comillas automáticamente. \nEl valor predeterminado es \"true\".",
+ "c_cpp.debuggers.pipeTransport.quoteArgs.description": "Si los argumentos individuales de pipeProgram contienen caracteres (como espacios o tabulaciones), ¿debe incluirse entre comillas? Si es \"false\", el comando del depurador dejará de incluirse entre comillas automáticamente. \r\nEl valor predeterminado es \"true\".",
"c_cpp.debuggers.logging.description": "Marcas opcionales que determinan los tipos de mensajes que deben registrarse en la Consola de depuración.",
"c_cpp.debuggers.logging.exceptions.description": "Marca opcional que determina si los mensajes de excepción deben registrarse en la Consola de depuración. El valor predeterminado es true.",
"c_cpp.debuggers.logging.moduleLoad.description": "Marca opcional que determina si los eventos de carga de módulos deben registrarse en la Consola de depuración. El valor predeterminado es true.",
@@ -208,7 +208,7 @@
"c_cpp.debuggers.cppdbg.visualizerFile.description": "Archivo .natvis que debe usarse para depurar este proceso. Esta opción no es compatible con la impresión con sangría de GDB. Vea también \"showDisplayString\" si utiliza esta configuración.",
"c_cpp.debuggers.cppvsdbg.visualizerFile.description": "Archivo. natvis que debe usarse para depurar este proceso.",
"c_cpp.debuggers.showDisplayString.description": "Cuando se especifica visualizerFile, showDisplayString habilita la cadena para mostrar. La activación de esta opción puede ralentizar el rendimiento durante la depuración.",
- "c_cpp.debuggers.environment.description": "Variables de entorno que se agregan al entorno del programa. Ejemplo: [ { \"name\": \"squid\", \"value\": \"clam\" } ].",
+ "c_cpp.debuggers.environment.description": "Variables del entorno que se agregan al entorno del programa. Ejemplo: [ { \"name\": \"config\", \"value\": \"Debug\" } ], no [ { \"config\": \"Debug\" } ].",
"c_cpp.debuggers.envFile.description": "Ruta de acceso absoluta a un archivo que contiene definiciones de variables de entorno. Este archivo tiene pares clave-valor separados por un signo igual por línea. Por ejemplo, CLAVE=VALOR.",
"c_cpp.debuggers.additionalSOLibSearchPath.description": "Lista de directorios separados por punto y coma que debe usarse para buscar archivos .so. Ejemplo: \"c:\\dir1;c:\\dir2\".",
"c_cpp.debuggers.MIMode.description": "Indica el depurador de la consola al que debe conectarse MIDebugEngine. Los valores permitidos son \"gdb\" y \"lldb\".",
diff --git a/Extension/i18n/esn/src/main.i18n.json b/Extension/i18n/esn/src/main.i18n.json
index 92d07db42c..fda6383160 100644
--- a/Extension/i18n/esn/src/main.i18n.json
+++ b/Extension/i18n/esn/src/main.i18n.json
@@ -7,8 +7,7 @@
"architecture.not.supported": "La arquitectura {0} no se admite. ",
"apline.containers.not.supported": "Los contenedores de Alpine no se admiten.",
"download.button": "Ir a la página de descarga",
- "native.binaries.mismatch.osx": "This Intel version of the extension has been installed. Since you are on an Apple Silicon Mac, we recommend installing the Apple Silicon version of the extension.",
- "native.binaries.not.supported": "La versión para {0} de la extensión no es compatible con el sistema operativo. Descargue la versión \"{1}\" de la extensión e instálela.",
+ "native.binaries.not.supported": "La versión para {0} {1} de la extensión no es compatible con el sistema operativo. Descargue la versión \"{2}\" de la extensión e instálela.",
"extension.installation.failed": "Error de instalación de la extensión de C/C++. Tendrá que reparar o reinstalar la extensión para que las características del lenguaje C/C++ funcionen correctamente.",
"remove.extension": "Intentar reparar",
"jason.files.missing": "Error de instalación de la extensión de C/C++. Tendrá que reinstalar la extensión para que las características del lenguaje C/C++ funcionen correctamente.",
diff --git a/Extension/i18n/esn/src/nativeStrings.i18n.json b/Extension/i18n/esn/src/nativeStrings.i18n.json
index 035e3d7172..9fb9b2461c 100644
--- a/Extension/i18n/esn/src/nativeStrings.i18n.json
+++ b/Extension/i18n/esn/src/nativeStrings.i18n.json
@@ -208,9 +208,9 @@
"unrecognized_language_standard_version": "La consulta del compilador devolvió una versión estándar del lenguaje no reconocida. En su lugar se usará la última versión admitida.",
"intellisense_process_crash_detected": "Se ha detectado un bloqueo del proceso de IntelliSense.",
"return_values_label": "Valores devueltos:",
- "nvcc_compiler_not_found": "Unable to locate nvcc compiler: {0}",
- "nvcc_host_compiler_not_found": "Unable to locate nvcc host compiler: {0}",
- "invoking_nvcc": "Invoking nvcc with command line: {0}",
- "nvcc_host_compile_command_not_found": "Unable to find host compile command in output of nvcc.",
- "unable_to_locate_forced_include": "Unable to locate forced include: {0}"
+ "nvcc_compiler_not_found": "No se encuentra el compilador de nvcc: {0}",
+ "nvcc_host_compiler_not_found": "No se encuentra el compilador host nvcc: {0}",
+ "invoking_nvcc": "Invocando nvcc con la línea de comandos: {0}",
+ "nvcc_host_compile_command_not_found": "No se encuentra el comando de compilación del host en la salida de nvcc.",
+ "unable_to_locate_forced_include": "No se encuentra la inclusión forzada: {0}"
}
\ No newline at end of file
diff --git a/Extension/i18n/esn/src/packageManager.i18n.json b/Extension/i18n/esn/src/packageManager.i18n.json
index 9184c5d3c6..7e677ff259 100644
--- a/Extension/i18n/esn/src/packageManager.i18n.json
+++ b/Extension/i18n/esn/src/packageManager.i18n.json
@@ -26,9 +26,9 @@
"zip.file.error": "Error de archivo ZIP",
"create.directory.error": "Error al crear el directorio",
"zip.stream.error": "Error al leer la secuencia ZIP",
- "read.stream.error": "Error en la secuencia de lectura",
"unlink.error": "Error al desvincular el archivo {0}",
"rename.error": "Error al cambiar el nombre del archivo {0}",
+ "read.stream.error": "Error en la secuencia de lectura",
"write.stream.error": "Error en la secuencia de escritura",
"file.already.exists": "Advertencia: El archivo \"{0}\" ya existe y no se ha actualizado."
}
\ No newline at end of file
diff --git a/Extension/i18n/fra/package.i18n.json b/Extension/i18n/fra/package.i18n.json
index 14a6fe9855..520d2ddb5b 100644
--- a/Extension/i18n/fra/package.i18n.json
+++ b/Extension/i18n/fra/package.i18n.json
@@ -23,8 +23,8 @@
"c_cpp.command.vcpkgClipboardInstallSuggested.title": "Copier la commande vcpkg install dans le Presse-papiers",
"c_cpp.command.vcpkgOnlineHelpSuggested.title": "Visiter la page d'aide de vcpkg",
"c_cpp.command.generateEditorConfig.title": "Générer le contenu d'EditorConfig à partir des paramètres de format VC",
- "c_cpp.command.GoToNextDirectiveInGroup.title": "Go to next preprocessor directive in conditional group",
- "c_cpp.command.GoToPrevDirectiveInGroup.title": "Go to previous preprocessor directive in conditional group",
+ "c_cpp.command.GoToNextDirectiveInGroup.title": "Accéder à la directive de préprocesseur suivante dans le groupe conditionnel",
+ "c_cpp.command.GoToPrevDirectiveInGroup.title": "Accéder à la directive de préprocesseur précédente dans le groupe conditionnel",
"c_cpp.configuration.formatting.description": "Configure le moteur de mise en forme",
"c_cpp.configuration.formatting.clangFormat.description": "clang-format est utilisé pour la mise en forme du code.",
"c_cpp.configuration.formatting.vcFormat.description": "Le moteur de mise en forme de Visual C++ est utilisé pour la mise en forme du code.",
@@ -170,9 +170,9 @@
"c_cpp.configuration.addNodeAddonIncludePaths.description": "Ajoute des chemins include à partir de nan et node-addon-api quand il s'agit de dépendances.",
"c_cpp.configuration.renameRequiresIdentifier.description": "Si la valeur est true, l'opération Renommer le symbole nécessite un identificateur C/C++ valide.",
"c_cpp.configuration.autocompleteAddParentheses.description": "Si la valeur est true, l'autocomplétion ajoute automatiquement \"(\" après les appels de fonction. Dans ce cas \")\" peut également être ajouté, en fonction de la valeur du paramètre \"editor.autoClosingBrackets\".",
- "c_cpp.configuration.filesExclude.description": "Configure glob patterns for excluding folders (and files if \"C_Cpp.exclusionPolicy\" is changed). These are specific to the C/C++ extension and are in addition to \"files.exclude\", but unlike \"files.exclude\" they are not removed from the Explorer view. Read more about glob patterns [here](https://code.visualstudio.com/docs/editor/codebasics#_advanced-search-options).",
- "c_cpp.configuration.filesExcludeBoolean.description": "The glob pattern to match file paths against. Set to true or false to enable or disable the pattern.",
- "c_cpp.configuration.filesExcludeWhen.description": "Additional check on the siblings of a matching file. Use $(basename) as variable for the matching file name.",
+ "c_cpp.configuration.filesExclude.description": "Configurez des modèles Glob pour l’exclusion des dossiers (et des fichiers si « C_Cpp.exclusionPolicy » est modifié). Ceux-ci sont spécifiques à l’extension C/C++ et s’ajoutent à « files.exclude », mais contrairement à « files.exclude », ils ne sont pas supprimés de l’affichage de l’Explorateur. Vous pourrez en savoir plus sur les modèles Glob [ici] (https://code.visualstudio.com/docs/editor/codebasics#_advanced-search-options).",
+ "c_cpp.configuration.filesExcludeBoolean.description": "Modèle Glob auquel les chemins de fichiers doivent correspondre. Affectez la valeur true ou false pour activer ou désactiver le modèle.",
+ "c_cpp.configuration.filesExcludeWhen.description": "Vérification supplémentaire des frères d'un fichier correspondant. Utilisez $(basename) comme variable pour le nom de fichier correspondant.",
"c_cpp.configuration.debugger.useBacktickCommandSubstitution.description": "Si la valeur est true, le remplacement de la commande d'interpréteur de commandes du débogueur utilise un accent grave (`) obsolète.",
"c_cpp.contributes.views.cppReferencesView.title": "C/C++ : Autres résultats des références",
"c_cpp.debuggers.pipeTransport.description": "Quand ce paramètre est présent, indique au débogueur de se connecter à un ordinateur distant en se servant d'un autre exécutable comme canal de relais d'entrée/de sortie standard entre VS Code et l'exécutable du back-end du débogueur MI (par exemple, gdb).",
@@ -183,7 +183,7 @@
"c_cpp.debuggers.pipeTransport.pipeProgram.description": "Commande canal complète à exécuter.",
"c_cpp.debuggers.pipeTransport.pipeArgs.description": "Arguments de ligne de commande passés au programme canal pour configurer la connexion.",
"c_cpp.debuggers.pipeTransport.pipeEnv.description": "Variables d'environnement passées au programme canal.",
- "c_cpp.debuggers.pipeTransport.quoteArgs.description": "Si des arguments individuels de pipeProgram contiennent des caractères (par exemple des espaces ou des tabulations), doivent-ils être placés entre guillemets ? Si la valeur est 'false', la commande de débogueur n'est plus automatiquement placée entre guillemets. \nLa valeur par défaut est 'true'.",
+ "c_cpp.debuggers.pipeTransport.quoteArgs.description": "Si des arguments individuels de pipeProgram contiennent des caractères tels que des espaces ou des tabulations, doivent-ils être placés entre guillemets ? Si la valeur est « false », la commande de débogueur n'est plus automatiquement placée entre guillemets. \r\nLa valeur par défaut est « true ».",
"c_cpp.debuggers.logging.description": "Indicateurs facultatifs pour déterminer les types de messages à journaliser dans la console de débogage.",
"c_cpp.debuggers.logging.exceptions.description": "Indicateur facultatif pour déterminer si les messages d'exception doivent être journalisés dans la console de débogage. La valeur par défaut est true.",
"c_cpp.debuggers.logging.moduleLoad.description": "Indicateur facultatif pour déterminer si les événements de chargement de module doivent être journalisés dans la console de débogage. La valeur par défaut est true.",
@@ -208,7 +208,7 @@
"c_cpp.debuggers.cppdbg.visualizerFile.description": "Fichier .natvis à utiliser pendant le débogage de ce processus. Cette option n'est pas compatible avec l'impression en mode Pretty GDB. Consultez également \"showDisplayString\" en cas d'utilisation de ce paramètre.",
"c_cpp.debuggers.cppvsdbg.visualizerFile.description": "Fichier .natvis à utiliser pendant le débogage de ce processus.",
"c_cpp.debuggers.showDisplayString.description": "Quand un visualizerFile est spécifié, showDisplayString active la chaîne d'affichage. Si vous activez cette option, les performances peuvent être ralenties pendant le débogage.",
- "c_cpp.debuggers.environment.description": "Variables d'environnement à ajouter à l'environnement du programme. Exemple : [ { \"name\": \"squid\", \"value\": \"clam\" } ].",
+ "c_cpp.debuggers.environment.description": "Variables d’environnement à ajouter à l’environnement du programme. Exemple : [ { « nom »: « config », « valeur » : « Débogage » } ], et non [ { « config »: « Débogage » } ].",
"c_cpp.debuggers.envFile.description": "Chemin absolu d'un fichier contenant des définitions de variable d'environnement. Ce fichier a des paires clé-valeur séparées par un signe égal par ligne. Par exemple, CLÉ=VALEUR",
"c_cpp.debuggers.additionalSOLibSearchPath.description": "Liste de répertoires séparés par des points-virgules à utiliser pour rechercher des fichiers .so. Exemple : \"c:\\dir1;c:\\dir2\".",
"c_cpp.debuggers.MIMode.description": "Indique le débogueur de console auquel MIDebugEngine se connecte. Les valeurs autorisées sont \"gdb\" \"lldb\".",
diff --git a/Extension/i18n/fra/src/main.i18n.json b/Extension/i18n/fra/src/main.i18n.json
index 18dee948fb..7b3e9588b8 100644
--- a/Extension/i18n/fra/src/main.i18n.json
+++ b/Extension/i18n/fra/src/main.i18n.json
@@ -7,8 +7,7 @@
"architecture.not.supported": "L'architecture {0} n'est pas prise en charge. ",
"apline.containers.not.supported": "Les conteneurs Alpine ne sont pas pris en charge.",
"download.button": "Accéder à la page de téléchargement",
- "native.binaries.mismatch.osx": "This Intel version of the extension has been installed. Since you are on an Apple Silicon Mac, we recommend installing the Apple Silicon version of the extension.",
- "native.binaries.not.supported": "Cette version {0} de l'extension est incompatible avec votre système d'exploitation. Téléchargez et installez la version \"{1}\" de l'extension.",
+ "native.binaries.not.supported": "Cette version {0} {1} de l'extension est incompatible avec votre système d'exploitation. Téléchargez et installez la version {2} de l'extension.",
"extension.installation.failed": "Échec de l'installation de l'extension C/C++. Vous devez réparer ou réinstaller l'extension pour que les fonctionnalités du langage C/C++ fonctionnent correctement.",
"remove.extension": "Tentative de réparation",
"jason.files.missing": "Échec de l'installation de l'extension C/C++. Vous devez réinstaller l'extension pour que les fonctionnalités du langage C/C++ fonctionnent correctement.",
diff --git a/Extension/i18n/fra/src/nativeStrings.i18n.json b/Extension/i18n/fra/src/nativeStrings.i18n.json
index 3a0720ce07..bd343b15b2 100644
--- a/Extension/i18n/fra/src/nativeStrings.i18n.json
+++ b/Extension/i18n/fra/src/nativeStrings.i18n.json
@@ -208,9 +208,9 @@
"unrecognized_language_standard_version": "L'interrogation du compilateur a retourné une version de norme de langage non reconnue. La toute dernière version prise en charge va être utilisée à la place.",
"intellisense_process_crash_detected": "Détection d'un plantage du processus IntelliSense.",
"return_values_label": "Valeurs de retour :",
- "nvcc_compiler_not_found": "Unable to locate nvcc compiler: {0}",
- "nvcc_host_compiler_not_found": "Unable to locate nvcc host compiler: {0}",
- "invoking_nvcc": "Invoking nvcc with command line: {0}",
- "nvcc_host_compile_command_not_found": "Unable to find host compile command in output of nvcc.",
- "unable_to_locate_forced_include": "Unable to locate forced include: {0}"
+ "nvcc_compiler_not_found": "Impossible de localiser le compilateur nvcc : {0}",
+ "nvcc_host_compiler_not_found": "Impossible de localiser le compilateur hôte pour nvcc : {0}",
+ "invoking_nvcc": "Appel de nvcc avec la ligne de commande : {0}",
+ "nvcc_host_compile_command_not_found": "La commande de compilation hôte est introuvable dans la sortie de nvcc.",
+ "unable_to_locate_forced_include": "Impossible de localiser le fichier include forcé : {0}"
}
\ No newline at end of file
diff --git a/Extension/i18n/fra/src/packageManager.i18n.json b/Extension/i18n/fra/src/packageManager.i18n.json
index 78871bde37..2741c81f2c 100644
--- a/Extension/i18n/fra/src/packageManager.i18n.json
+++ b/Extension/i18n/fra/src/packageManager.i18n.json
@@ -26,9 +26,9 @@
"zip.file.error": "Erreur du fichier zip",
"create.directory.error": "Erreur de création du répertoire",
"zip.stream.error": "Erreur de lecture du flux zip",
- "read.stream.error": "Erreur du flux de lecture",
"unlink.error": "Erreur de dissociation du fichier {0}",
"rename.error": "Erreur de renommage du fichier {0}",
+ "read.stream.error": "Erreur du flux de lecture",
"write.stream.error": "Erreur du flux d'écriture",
"file.already.exists": "Avertissement : Le fichier '{0}' existe déjà et n'a pas été mis à jour."
}
\ No newline at end of file
diff --git a/Extension/i18n/ita/package.i18n.json b/Extension/i18n/ita/package.i18n.json
index b8d316b813..83ae103dbb 100644
--- a/Extension/i18n/ita/package.i18n.json
+++ b/Extension/i18n/ita/package.i18n.json
@@ -170,9 +170,9 @@
"c_cpp.configuration.addNodeAddonIncludePaths.description": "Aggiunge percorsi di inclusione da nan e node-addon-api quando sono dipendenze.",
"c_cpp.configuration.renameRequiresIdentifier.description": "Se è true, con 'Rinomina simbolo' sarà richiesto un identificatore C/C++ valido.",
"c_cpp.configuration.autocompleteAddParentheses.description": "Se è true, il completamento automatico aggiungerà automaticamente \"(\" dopo le chiamate di funzione. In tal caso potrebbe essere aggiunto anche \")\", a seconda del valore dell'impostazione \"editor.autoClosingBrackets\".",
- "c_cpp.configuration.filesExclude.description": "Configure glob patterns for excluding folders (and files if \"C_Cpp.exclusionPolicy\" is changed). These are specific to the C/C++ extension and are in addition to \"files.exclude\", but unlike \"files.exclude\" they are not removed from the Explorer view. Read more about glob patterns [here](https://code.visualstudio.com/docs/editor/codebasics#_advanced-search-options).",
- "c_cpp.configuration.filesExcludeBoolean.description": "The glob pattern to match file paths against. Set to true or false to enable or disable the pattern.",
- "c_cpp.configuration.filesExcludeWhen.description": "Additional check on the siblings of a matching file. Use $(basename) as variable for the matching file name.",
+ "c_cpp.configuration.filesExclude.description": "Configura i criteri GLOB per escludere le cartelle (e i file, se \"C_Cpp.exclusionPolicy\" è modificato). Questi sono specifici dell'estensione C/C++ e si aggiungono a \"files.exclude\", ma a differenza di \"files.exclude\" non vengono rimossi dalla visualizzazione Esplora. Altre informazioni sui criteri GLOB [qui](https://code.visualstudio.com/docs/editor/codebasics#_advanced-search-options).",
+ "c_cpp.configuration.filesExcludeBoolean.description": "Criterio GLOB da usare per trovare percorsi file. Impostare su True o False per abilitare o disabilitare il criterio.",
+ "c_cpp.configuration.filesExcludeWhen.description": "Controllo aggiuntivo sugli elementi di pari livello di un file corrispondente. Usare $(basename) come variabile del nome file corrispondente.",
"c_cpp.configuration.debugger.useBacktickCommandSubstitution.description": "Se è true, per la sostituzione del comando della shell del debugger verrà usato il carattere backtick obsoleto (`).",
"c_cpp.contributes.views.cppReferencesView.title": "C/C++: Risultati altri riferimenti",
"c_cpp.debuggers.pipeTransport.description": "Se presente, indica al debugger di connettersi a un computer remoto usando come pipe un altro eseguibile che inoltra l'input/output standard tra VS Code e l'eseguibile back-end del debugger abilitato per MI, ad esempio gdb.",
@@ -183,7 +183,7 @@
"c_cpp.debuggers.pipeTransport.pipeProgram.description": "Comando pipe completo da eseguire.",
"c_cpp.debuggers.pipeTransport.pipeArgs.description": "Argomenti della riga di comando passati al programma pipe per configurare la connessione.",
"c_cpp.debuggers.pipeTransport.pipeEnv.description": "Variabili di ambiente passate al programma pipe.",
- "c_cpp.debuggers.pipeTransport.quoteArgs.description": "Indica se i singoli argomenti di pipeProgram devono essere racchiusi tra virgolette quando contengono caratteri, ad esempio spazi o tabulazioni. Se è 'false', il comando del debugger non verrà più racchiuso automaticamente tra virgolette. \nL'impostazione predefinita è 'true'.",
+ "c_cpp.debuggers.pipeTransport.quoteArgs.description": "Indica se i singoli argomenti di pipeProgram devono essere racchiusi tra virgolette quando contengono caratteri, ad esempio spazi o tabulazioni. Se è 'false', il comando del debugger non verrà più racchiuso automaticamente tra virgolette. \r\nL'impostazione predefinita è 'true'.",
"c_cpp.debuggers.logging.description": "Flag facoltativi per determinare i tipi di messaggi da registrare nella Console di debug.",
"c_cpp.debuggers.logging.exceptions.description": "Flag facoltativo per determinare se i messaggi di eccezione devono essere registrati nella Console di debug. Il valore predefinito è true.",
"c_cpp.debuggers.logging.moduleLoad.description": "Flag facoltativo per determinare se gli eventi di caricamento del modulo devono essere registrati nella Console di debug. Il valore predefinito è true.",
@@ -208,7 +208,7 @@
"c_cpp.debuggers.cppdbg.visualizerFile.description": "File con estensione natvis da usare durante il debug di questo processo. Questa opzione non è compatibile con la riformattazione GDB. Se si usa questa impostazione, vedere anche \"showDisplayString\".",
"c_cpp.debuggers.cppvsdbg.visualizerFile.description": "File con estensione natvis da usare durante il debug di questo processo.",
"c_cpp.debuggers.showDisplayString.description": "Quando si specifica un oggetto visualizerFile, showDisplayString abilita la stringa di visualizzazione. L'attivazione di questa opzione può comportare un rallentamento delle prestazioni durante il debug.",
- "c_cpp.debuggers.environment.description": "Variabili di ambiente da aggiungere all'ambiente per il programma. Esempio: [ { \"name\": \"squid\", \"value\": \"clam\" } ].",
+ "c_cpp.debuggers.environment.description": "Variabili di ambiente da aggiungere all'ambiente per il programma. Esempio: [ { \"name\": \"config\", \"value\": \"Debug\" } ], non [ { \"config\": \"Debug\" } ].",
"c_cpp.debuggers.envFile.description": "Percorso assoluto di un file contenente le definizioni delle variabili di ambiente. Questo file contiene su ogni riga coppie chiave-valore separate da un segno di uguale, ad esempio CHIAVE=VALORE",
"c_cpp.debuggers.additionalSOLibSearchPath.description": "Elenco di directory delimitate da punto e virgola da usare per la ricerca di file con estensione so. Esempio: \"c:\\dir1;c:\\dir2\".",
"c_cpp.debuggers.MIMode.description": "Indica il debugger della console a cui si connetterà MIDebugEngine. I valori consentiti sono \"gdb\" e \"lldb\".",
diff --git a/Extension/i18n/ita/src/main.i18n.json b/Extension/i18n/ita/src/main.i18n.json
index eb45e53655..87a2e6fc85 100644
--- a/Extension/i18n/ita/src/main.i18n.json
+++ b/Extension/i18n/ita/src/main.i18n.json
@@ -7,8 +7,7 @@
"architecture.not.supported": "L'architettura {0} non è supportata. ",
"apline.containers.not.supported": "I contenitori Alpine non sono supportati.",
"download.button": "Vai alla pagina di download",
- "native.binaries.mismatch.osx": "This Intel version of the extension has been installed. Since you are on an Apple Silicon Mac, we recommend installing the Apple Silicon version of the extension.",
- "native.binaries.not.supported": "La versione {0} dell'estensione non è compatibile con il sistema operativo. Scaricare e installare la versione \"{1}\" dell'estensione.",
+ "native.binaries.not.supported": "La versione {0} {1} dell'estensione non è compatibile con il sistema operativo. Scaricare e installare la versione \"{2}\" dell'estensione.",
"extension.installation.failed": "Non è stato possibile installare l'estensione C/C++. Per funzionare correttamente, è necessario riparare o reinstallare l'estensione per le funzionalità del linguaggio C/C++.",
"remove.extension": "Tentativo di riparazione",
"jason.files.missing": "Non è stato possibile installare l'estensione C/C++. Per funzionare correttamente, sarà necessario reinstallare l'estensione per le funzionalità del linguaggio C/C++.",
diff --git a/Extension/i18n/ita/src/packageManager.i18n.json b/Extension/i18n/ita/src/packageManager.i18n.json
index 8bdcc6a33a..a614d351a8 100644
--- a/Extension/i18n/ita/src/packageManager.i18n.json
+++ b/Extension/i18n/ita/src/packageManager.i18n.json
@@ -26,9 +26,9 @@
"zip.file.error": "Errore del file ZIP",
"create.directory.error": "Si è verificato un errore durante la creazione della directory",
"zip.stream.error": "Si è verificato un errore durante la lettura del flusso ZIP",
- "read.stream.error": "Si è verificato un errore durante la lettura del flusso",
"unlink.error": "Si è verificato durante lo scollegamento del file {0}",
"rename.error": "Si è verificato durante la ridenominazione del file {0}",
+ "read.stream.error": "Si è verificato un errore durante la lettura del flusso",
"write.stream.error": "Si è verificato un errore durante la scrittura del flusso",
"file.already.exists": "Avviso: il file '{0}' esiste già e non è stato aggiornato."
}
\ No newline at end of file
diff --git a/Extension/i18n/jpn/package.i18n.json b/Extension/i18n/jpn/package.i18n.json
index 87bf75247d..178ee3062d 100644
--- a/Extension/i18n/jpn/package.i18n.json
+++ b/Extension/i18n/jpn/package.i18n.json
@@ -170,9 +170,9 @@
"c_cpp.configuration.addNodeAddonIncludePaths.description": "依存関係にある場合は、nan および node-addon-api からのインクルード パスを追加します。",
"c_cpp.configuration.renameRequiresIdentifier.description": "true の場合、'シンボルの名前変更' には有効な C/C++ 識別子が必要です。",
"c_cpp.configuration.autocompleteAddParentheses.description": "true の場合、関数呼び出しの後に \"(\" が自動的に追加されます。その場合は、\"editor.autoClosingBrackets\" 設定の値に応じて、\")\" も追加される場合があります。",
- "c_cpp.configuration.filesExclude.description": "Configure glob patterns for excluding folders (and files if \"C_Cpp.exclusionPolicy\" is changed). These are specific to the C/C++ extension and are in addition to \"files.exclude\", but unlike \"files.exclude\" they are not removed from the Explorer view. Read more about glob patterns [here](https://code.visualstudio.com/docs/editor/codebasics#_advanced-search-options).",
- "c_cpp.configuration.filesExcludeBoolean.description": "The glob pattern to match file paths against. Set to true or false to enable or disable the pattern.",
- "c_cpp.configuration.filesExcludeWhen.description": "Additional check on the siblings of a matching file. Use $(basename) as variable for the matching file name.",
+ "c_cpp.configuration.filesExclude.description": "フォルダー (\"C_Cpp.exclusionPolicy\" が変更された場合はファイルも) を除外するための glob パターンを構成します。これらは C/c + + の拡張機能に固有であり、\"files. exclude\" に加えて構成しますが、\"files. exclude\" とは異なり、[エクスプローラー] ビューからは削除されません。glob パターンの詳細については、[こちら] (https://code.visualstudio.com/docs/editor/codebasics#_advanced-search-options) を参照してください。",
+ "c_cpp.configuration.filesExcludeBoolean.description": "ファイル パスの照合基準となる glob パターン。これを true または false に設定すると、パターンがそれぞれ有効/無効になります。",
+ "c_cpp.configuration.filesExcludeWhen.description": "一致するファイルの兄弟をさらにチェックします。一致するファイル名の変数として $(basename) を使用します。",
"c_cpp.configuration.debugger.useBacktickCommandSubstitution.description": "True の場合、デバッガー シェルのコマンド置換では古いバックティック (') が使用されます。",
"c_cpp.contributes.views.cppReferencesView.title": "C/C++: その他の参照結果",
"c_cpp.debuggers.pipeTransport.description": "これを指定すると、デバッガーにより、別の実行可能ファイルをパイプとして使用してリモート コンピューターに接続され、VS Code と MI 対応のデバッガー バックエンド実行可能ファイル (gdb など) との間で標準入出力が中継されます。",
@@ -183,7 +183,7 @@
"c_cpp.debuggers.pipeTransport.pipeProgram.description": "実行するパイプ コマンドの完全修飾パス。",
"c_cpp.debuggers.pipeTransport.pipeArgs.description": "接続を構成するためにパイプ プログラムに渡すコマンド ライン引数。",
"c_cpp.debuggers.pipeTransport.pipeEnv.description": "パイプ プログラムに渡す環境変数。",
- "c_cpp.debuggers.pipeTransport.quoteArgs.description": "pipeProgram の個々の引数に (スペースやタブなどの) 文字が含まれる場合に引用符で囲むかどうか。'false' に設定すると、デバッガー コマンドが自動的に引用符で囲まれることはなくなります。\n既定値は 'true' です。",
+ "c_cpp.debuggers.pipeTransport.quoteArgs.description": "pipeProgram の個々の引数に (スペースやタブなどの) 文字が含まれる場合に引用符で囲むかどうか。'false' に設定すると、デバッガー コマンドが自動的に引用符で囲まれることはなくなります。\r\n既定値は 'true' です。",
"c_cpp.debuggers.logging.description": "どの種類のメッセージをデバッグ コンソールに記録する必要があるかを決定するオプションのフラグです。",
"c_cpp.debuggers.logging.exceptions.description": "例外メッセージをデバッグ コンソールに記録するかどうかを決定するオプションのフラグです。既定値は true です。",
"c_cpp.debuggers.logging.moduleLoad.description": "モジュール読み込みイベントをデバッグ コンソールに記録するかどうかを決定するオプションのフラグです。既定値は true です。",
@@ -208,7 +208,7 @@
"c_cpp.debuggers.cppdbg.visualizerFile.description": "このプロセスをデバッグするときに使用する .natvis ファイルです。このオプションは GDB の再フォーマットと互換性がありません。この設定を使用する場合は、\"showDisplayString\" も参照してください。",
"c_cpp.debuggers.cppvsdbg.visualizerFile.description": "このプロセスをデバッグするときに使用する .natvis ファイルです。",
"c_cpp.debuggers.showDisplayString.description": "visualizerFile を指定すると、showDisplayString により表示文字列が有効になります。このオプションをオンにすると、デバッグ中にパフォーマンスが低下する可能性があります。",
- "c_cpp.debuggers.environment.description": "プログラムの環境に追加する環境変数。例: [ { \"name\": \"squid\", \"value\": \"clam\" } ]。",
+ "c_cpp.debuggers.environment.description": "プログラムの環境に追加する環境変数。例: [ { \"name\": \"config\", \"value\": \"Debug\" } ], not [ { \"config\": \"Debug\" } ]。",
"c_cpp.debuggers.envFile.description": "環境変数の定義を含むファイルへの絶対パスです。このファイルには、行ごとに等号で区切られたキーと値のペアがあります。例: キー=値",
"c_cpp.debuggers.additionalSOLibSearchPath.description": ".so ファイルの検索に使用する、セミコロンで区切られたディレクトリの一覧です。例: \"c:\\dir1;c:\\dir2\"。",
"c_cpp.debuggers.MIMode.description": "MIDebugEngine が接続するコンソール デバッガーを示します。許可されている値は \"gdb\" \"lldb\" です。",
diff --git a/Extension/i18n/jpn/src/main.i18n.json b/Extension/i18n/jpn/src/main.i18n.json
index 54862c9410..b3abf9eba2 100644
--- a/Extension/i18n/jpn/src/main.i18n.json
+++ b/Extension/i18n/jpn/src/main.i18n.json
@@ -7,8 +7,7 @@
"architecture.not.supported": "アーキテクチャ {0} はサポートされていません。",
"apline.containers.not.supported": "Alpine コンテナーはサポートされていません。",
"download.button": "ダウンロード ページへ移動",
- "native.binaries.mismatch.osx": "This Intel version of the extension has been installed. Since you are on an Apple Silicon Mac, we recommend installing the Apple Silicon version of the extension.",
- "native.binaries.not.supported": "この {0} バージョンの拡張機能は、お使いの OS と互換性がありません。拡張機能の \"{1}\" バージョンをダウンロードしてインストールしてください。",
+ "native.binaries.not.supported": "この {0} {1} バージョンの拡張機能は、お使いの OS と互換性がありません。拡張機能の \"{2}\" バージョンをダウンロードしてインストールしてください。",
"extension.installation.failed": "C/C++ の拡張機能を正常にインストールできませんでした。正常に機能させるには、C/C++ 言語機能の拡張機能を修復または再インストールする必要があります。",
"remove.extension": "修復の試行",
"jason.files.missing": "C/C++ の拡張機能を正常にインストールできませんでした。正常に機能させるには、C/C++ 言語機能の拡張機能を再インストールする必要があります。",
diff --git a/Extension/i18n/jpn/src/packageManager.i18n.json b/Extension/i18n/jpn/src/packageManager.i18n.json
index a36dd5fc57..35703074f2 100644
--- a/Extension/i18n/jpn/src/packageManager.i18n.json
+++ b/Extension/i18n/jpn/src/packageManager.i18n.json
@@ -26,9 +26,9 @@
"zip.file.error": "Zip ファイルのエラー",
"create.directory.error": "ディレクトリの作成中にエラーが発生しました",
"zip.stream.error": "zip ストリームの読み取りでエラーが発生しました",
- "read.stream.error": "ストリームの読み取りでエラーが発生しました",
"unlink.error": "ファイル {0} のリンク解除中にエラーが発生しました",
"rename.error": "ファイル {0} の名前変更でエラーが発生しました",
+ "read.stream.error": "ストリームの読み取りでエラーが発生しました",
"write.stream.error": "ストリームの書き込みでエラーが発生しました",
"file.already.exists": "警告: ファイル '{0}' は既に存在するため、更新されませんでした。"
}
\ No newline at end of file
diff --git a/Extension/i18n/kor/package.i18n.json b/Extension/i18n/kor/package.i18n.json
index 0d263ace4c..8375ae47ce 100644
--- a/Extension/i18n/kor/package.i18n.json
+++ b/Extension/i18n/kor/package.i18n.json
@@ -170,9 +170,9 @@
"c_cpp.configuration.addNodeAddonIncludePaths.description": "nan 및 node-addon-api가 종속성일 때 해당 포함 경로를 추가합니다.",
"c_cpp.configuration.renameRequiresIdentifier.description": "true이면 '기호 이름 바꾸기'에 유효한 C/C++ 식별자가 필요합니다.",
"c_cpp.configuration.autocompleteAddParentheses.description": "true이면 자동 완성에서 \"editor.autoClosingBrackets\" 설정 값에 따라 함수 호출 뒤에 \"(\"를 자동으로 추가하며, 이 경우 \")\"도 추가될 수 있습니다.",
- "c_cpp.configuration.filesExclude.description": "Configure glob patterns for excluding folders (and files if \"C_Cpp.exclusionPolicy\" is changed). These are specific to the C/C++ extension and are in addition to \"files.exclude\", but unlike \"files.exclude\" they are not removed from the Explorer view. Read more about glob patterns [here](https://code.visualstudio.com/docs/editor/codebasics#_advanced-search-options).",
- "c_cpp.configuration.filesExcludeBoolean.description": "The glob pattern to match file paths against. Set to true or false to enable or disable the pattern.",
- "c_cpp.configuration.filesExcludeWhen.description": "Additional check on the siblings of a matching file. Use $(basename) as variable for the matching file name.",
+ "c_cpp.configuration.filesExclude.description": "폴더(및 \"C_Cpp.exclusionPolicy\"가 변경된 경우 파일)를 제외하기 위한 GLOB 패턴을 구성하세요. 이는 C/C++ 확장에 고유하며 \"files.exclude\"에 추가되지만 \"files.exclude\"와 달리 탐색기 보기에서 제거되지 않습니다. [여기](https://code.visualstudio.com/docs/editor/codebasics#_advanced-search-options)에서 GLOB 패턴에 대해 자세히 알아보세요.",
+ "c_cpp.configuration.filesExcludeBoolean.description": "파일 경로를 일치시킬 GLOB 패턴입니다. 패턴을 사용하거나 사용하지 않도록 설정하려면 true 또는 false로 설정하세요.",
+ "c_cpp.configuration.filesExcludeWhen.description": "일치하는 파일의 형제에 대한 추가 검사입니다. $(basename)을 일치하는 파일 이름에 대한 변수로 사용하세요.",
"c_cpp.configuration.debugger.useBacktickCommandSubstitution.description": "true인 경우 디버거 셸 명령 대체가 사용되지 않는 백틱(`)을 사용합니다.",
"c_cpp.contributes.views.cppReferencesView.title": "C/C++: 기타 참조 결과",
"c_cpp.debuggers.pipeTransport.description": "있을 경우 VS Code와 MI 지원 디버거 백 엔드 실행 파일(예: gdb) 사이에 표준 입출력을 릴레이하는 파이프로 다른 실행 파일을 사용하여 원격 컴퓨터에 연결되도록 디버거를 지정합니다.",
@@ -183,7 +183,7 @@
"c_cpp.debuggers.pipeTransport.pipeProgram.description": "실행할 정규화된 파이프 명령입니다.",
"c_cpp.debuggers.pipeTransport.pipeArgs.description": "연결을 구성하기 위해 파이프 프로그램에 전달되는 명령줄 인수입니다.",
"c_cpp.debuggers.pipeTransport.pipeEnv.description": "파이프 프로그램에 전달되는 환경 변수입니다.",
- "c_cpp.debuggers.pipeTransport.quoteArgs.description": "pipeProgram의 개별 인수가 문자(예: 공백 또는 탭)를 포함하는 경우 따옴표를 붙여야 하나요? 'false'인 경우 디버거 명령은 더 이상 자동으로 따옴표를 붙이지 않습니다. \n기본값은 'true'입니다.",
+ "c_cpp.debuggers.pipeTransport.quoteArgs.description": "pipeProgram의 개별 인수가 문자(예: 공백 또는 탭)를 포함하는 경우 따옴표를 붙여야 하나요? 'false'인 경우 디버거 명령은 더 이상 자동으로 따옴표를 붙이지 않습니다. \r\n기본값은 'true'입니다.",
"c_cpp.debuggers.logging.description": "메시지 유형을 디버그 콘솔에 기록할지 여부를 결정하는 선택적 플래그입니다.",
"c_cpp.debuggers.logging.exceptions.description": "예외 메시지를 디버그 콘솔에 기록할지 여부를 결정하는 선택적 플래그입니다. 기본값은 true입니다.",
"c_cpp.debuggers.logging.moduleLoad.description": "모듈 로드 이벤트를 디버그 콘솔에 기록할지 여부를 결정하는 선택적 플래그입니다. 기본값은 true입니다.",
@@ -208,7 +208,7 @@
"c_cpp.debuggers.cppdbg.visualizerFile.description": "이 프로세스를 디버그할 때 사용할 .natvis 파일입니다. 이 옵션은 GDB 자동 서식 지정과 호환되지 않습니다. 이 설정을 사용하는 경우 \"showDisplayString\"을 참조하세요.",
"c_cpp.debuggers.cppvsdbg.visualizerFile.description": "이 프로세스를 디버그할 때 사용할 .natvis 파일입니다.",
"c_cpp.debuggers.showDisplayString.description": "visualizerFile을 지정하면 showDisplayString은 표시 문자열을 사용하도록 설정합니다. 이 옵션을 켜면 디버그하는 동안 성능이 저하될 수 있습니다.",
- "c_cpp.debuggers.environment.description": "프로그램의 환경에 추가할 환경 변수입니다. 예: [ { \"name\": \"squid\", \"value\": \"clam\" } ].",
+ "c_cpp.debuggers.environment.description": "프로그램의 환경에 추가할 환경 변수입니다. 예: [ { \"name\": \"config\", \"value\": \"Debug\" } ], not [ { \"config\": \"Debug\" } ].",
"c_cpp.debuggers.envFile.description": "환경 변수 정의를 포함하는 파일의 절대 경로입니다. 이 파일에는 줄마다 등호로 구분된 키 값 쌍이 있습니다(예: 키=값).",
"c_cpp.debuggers.additionalSOLibSearchPath.description": ".so 파일 검색에 사용할 디렉터리의 세미콜론으로 구분된 목록입니다(예: \"c:\\dir1;c:\\dir2\").",
"c_cpp.debuggers.MIMode.description": "MIDebugEngine이 연결할 콘솔 디버거를 나타냅니다. 허용되는 값은 \"gdb\" \"lldb\"입니다.",
diff --git a/Extension/i18n/kor/src/main.i18n.json b/Extension/i18n/kor/src/main.i18n.json
index d85ab923fc..72a4f84bae 100644
--- a/Extension/i18n/kor/src/main.i18n.json
+++ b/Extension/i18n/kor/src/main.i18n.json
@@ -7,8 +7,7 @@
"architecture.not.supported": "{0} 아키텍처는 지원되지 않습니다. ",
"apline.containers.not.supported": "Alpine 컨테이너는 지원되지 않습니다.",
"download.button": "다운로드 페이지로 이동",
- "native.binaries.mismatch.osx": "This Intel version of the extension has been installed. Since you are on an Apple Silicon Mac, we recommend installing the Apple Silicon version of the extension.",
- "native.binaries.not.supported": "이 확장의 {0} 버전은 OS와 호환되지 않습니다. 확장의 \"{1}\" 버전을 다운로드하여 설치하세요.",
+ "native.binaries.not.supported": "이 확장의 {0} {1} 버전은 OS와 호환되지 않습니다. 확장의 \"{2}\" 버전을 다운로드하여 설치하세요.",
"extension.installation.failed": "C/C++ 확장을 설치하지 못했습니다. C/C++ 언어 기능이 제대로 작동하려면 확장을 복구하거나 다시 설치해야 합니다.",
"remove.extension": "복구 시도",
"jason.files.missing": "C/C++ 확장을 설치하지 못했습니다. C/C++ 언어 기능이 제대로 작동하려면 확장을 다시 설치해야 합니다.",
diff --git a/Extension/i18n/kor/src/packageManager.i18n.json b/Extension/i18n/kor/src/packageManager.i18n.json
index bfe6806e67..b349515504 100644
--- a/Extension/i18n/kor/src/packageManager.i18n.json
+++ b/Extension/i18n/kor/src/packageManager.i18n.json
@@ -26,9 +26,9 @@
"zip.file.error": "Zip 파일 오류",
"create.directory.error": "디렉터리를 만드는 동안 오류가 발생했습니다.",
"zip.stream.error": "zip 스트림을 읽는 동안 오류가 발생했습니다.",
- "read.stream.error": "읽기 스트림의 오류",
"unlink.error": "{0} 파일의 연결을 해제하는 동안 오류가 발생했습니다.",
"rename.error": "{0} 파일의 이름을 바꾸는 동안 오류가 발생했습니다.",
+ "read.stream.error": "읽기 스트림의 오류",
"write.stream.error": "쓰기 스트림의 오류",
"file.already.exists": "경고: '{0}' 파일이 이미 있으므로 업데이트되지 않았습니다."
}
\ No newline at end of file
diff --git a/Extension/i18n/plk/package.i18n.json b/Extension/i18n/plk/package.i18n.json
index 44aa0eebf9..ff0326deb5 100644
--- a/Extension/i18n/plk/package.i18n.json
+++ b/Extension/i18n/plk/package.i18n.json
@@ -170,9 +170,9 @@
"c_cpp.configuration.addNodeAddonIncludePaths.description": "Dodaj ścieżki dołączania z bibliotek nan i node-addon-api, gdy są one zależnościami.",
"c_cpp.configuration.renameRequiresIdentifier.description": "Jeśli ma wartość true, operacja „Zmień nazwę symbolu” będzie wymagać prawidłowego identyfikatora C/C++.",
"c_cpp.configuration.autocompleteAddParentheses.description": "W przypadku podania wartości true Autouzupełnianie będzie automatycznie dodawać znak „(” po wywołaniach funkcji, co może też powodować dodawanie znaku „)” w zależności od ustawienia „editor.autoClosingBrackets”.",
- "c_cpp.configuration.filesExclude.description": "Configure glob patterns for excluding folders (and files if \"C_Cpp.exclusionPolicy\" is changed). These are specific to the C/C++ extension and are in addition to \"files.exclude\", but unlike \"files.exclude\" they are not removed from the Explorer view. Read more about glob patterns [here](https://code.visualstudio.com/docs/editor/codebasics#_advanced-search-options).",
- "c_cpp.configuration.filesExcludeBoolean.description": "The glob pattern to match file paths against. Set to true or false to enable or disable the pattern.",
- "c_cpp.configuration.filesExcludeWhen.description": "Additional check on the siblings of a matching file. Use $(basename) as variable for the matching file name.",
+ "c_cpp.configuration.filesExclude.description": "Skonfiguruj wzorce globalne do wykluczania folderów (i plików, jeśli zostanie zmienione ustawienie „C_Cpp.exclusionPolicy”). Są one charakterystyczne dla rozszerzenia C/C++ i występują poza ustawieniem „files. exclude”, ale w przeciwieństwie do tego ustawienia nie można ich usuwać z widoku Eksploratora. Przeczytaj więcej na temat wzorców globalnych [tutaj] (https://code.visualstudio.com/docs/editor/codebasics#_advanced-search-options).",
+ "c_cpp.configuration.filesExcludeBoolean.description": "Wzorzec globalny do dopasowywania ścieżek do plików. Aby włączyć lub wyłączyć wzorzec, ustaw wartość true lub false.",
+ "c_cpp.configuration.filesExcludeWhen.description": "Dodatkowe sprawdzenie elementów równorzędnych pasującego pliku. Użyj ciągu $(basename) jako zmiennej dla nazwy pasującego pliku.",
"c_cpp.configuration.debugger.useBacktickCommandSubstitution.description": "Jeśli wartość będzie równa true, podstawianie poleceń powłoki debugera będzie używać przestarzałego grawisa (`).",
"c_cpp.contributes.views.cppReferencesView.title": "C/C++: inne wyniki odwołań",
"c_cpp.debuggers.pipeTransport.description": "Jeśli jest obecny, zawiera instrukcje dla debugera, aby połączył się z komputerem zdalnym przy użyciu innego pliku wykonywalnego jako potoku, który będzie przekazywał standardowe wejście/wyjście między programem VS Code a plikiem wykonywalnym zaplecza debugera z włączoną obsługą indeksu MI (takim jak gdb).",
@@ -183,7 +183,7 @@
"c_cpp.debuggers.pipeTransport.pipeProgram.description": "Polecenie w pełni kwalifikowanego potoku do wykonania.",
"c_cpp.debuggers.pipeTransport.pipeArgs.description": "Argumenty wiersza polecenia przekazywane do programu potoku w celu skonfigurowania połączenia.",
"c_cpp.debuggers.pipeTransport.pipeEnv.description": "Zmienne środowiskowe przekazywane do programu potoku.",
- "c_cpp.debuggers.pipeTransport.quoteArgs.description": "Jeśli poszczególne argumenty elementu pipeProgram zawierają znaki (takie jak spacje lub tabulatory), czy mają być umieszczane w cudzysłowach? W przypadku wartości „false” polecenie debugera nie będzie już automatycznie umieszczane w cudzysłowach. \nWartość domyślna to „true”.",
+ "c_cpp.debuggers.pipeTransport.quoteArgs.description": "Jeśli poszczególne argumenty elementu pipeProgram zawierają znaki (takie jak spacje lub tabulatory), czy mają być umieszczane w cudzysłowach? W przypadku wartości \"false\" polecenie debugera nie będzie już automatycznie umieszczane w cudzysłowach. \r\nWartość domyślna to „true”.",
"c_cpp.debuggers.logging.description": "Opcjonalne flagi określające, które typy komunikatów powinny być rejestrowane w konsoli debugowania.",
"c_cpp.debuggers.logging.exceptions.description": "Opcjonalna flaga określająca, czy komunikaty o wyjątkach powinny być rejestrowane w konsoli debugowania. Wartość domyślna to false.",
"c_cpp.debuggers.logging.moduleLoad.description": "Opcjonalna flaga określająca, czy zdarzenia ładowania modułów powinny być rejestrowane w konsoli debugowania. Wartość domyślna to false.",
@@ -208,7 +208,7 @@
"c_cpp.debuggers.cppdbg.visualizerFile.description": "Plik NATVIS, który ma być używany podczas debugowania tego procesu. Ta opcja jest niezgodna z formatowaniem kodu debugera GDB. W przypadku używania tego ustawienia zapoznaj się również z właściwością „showDisplayString”.",
"c_cpp.debuggers.cppvsdbg.visualizerFile.description": "Plik NATVIS, który ma być używany podczas debugowania tego procesu.",
"c_cpp.debuggers.showDisplayString.description": "Gdy element visualizerFile jest określony, opcja showDisplayString spowoduje włączenie ciągu wyświetlanego. Włączenie tej opcji może spowodować zmniejszenie wydajności podczas debugowania.",
- "c_cpp.debuggers.environment.description": "Zmienne środowiskowe do dodania do środowiska programu. Przykład: [ { \"name\": \"squid\", \"value\": \"clam\" } ].",
+ "c_cpp.debuggers.environment.description": "Zmienne środowiskowe do dodania do środowiska dla programu. Przykład: [{\"name\": \"config\", \"value\": \"debug\"}], nie [{\"config\": \"debug\"}].",
"c_cpp.debuggers.envFile.description": "Ścieżka bezwzględna do pliku zawierającego definicje zmiennych środowiskowych. Ten plik w każdym wierszu zawiera parę klucz-wartość oddzieloną znakiem równości. Przykład: KLUCZ=WARTOŚĆ",
"c_cpp.debuggers.additionalSOLibSearchPath.description": "Rozdzielana średnikami lista katalogów, w których mają być wyszukiwanie pliki SO. Przykład: „c:\\dir1;c:\\dir2”.",
"c_cpp.debuggers.MIMode.description": "Wskazuje debuger konsoli, z którym połączy się aparat MIDebugEngine. Dozwolone wartości to „gdb” i „lldb”.",
diff --git a/Extension/i18n/plk/src/main.i18n.json b/Extension/i18n/plk/src/main.i18n.json
index bb6e05e49f..5899c8bf45 100644
--- a/Extension/i18n/plk/src/main.i18n.json
+++ b/Extension/i18n/plk/src/main.i18n.json
@@ -7,8 +7,7 @@
"architecture.not.supported": "Architektura {0} nie jest obsługiwana.",
"apline.containers.not.supported": "Kontenery Alpine nie są obsługiwane.",
"download.button": "Przejdź do strony pobierania",
- "native.binaries.mismatch.osx": "This Intel version of the extension has been installed. Since you are on an Apple Silicon Mac, we recommend installing the Apple Silicon version of the extension.",
- "native.binaries.not.supported": "Ta wersja {0} rozszerzenia jest niezgodna z systemem operacyjnym. Pobierz i zainstaluj wersję rozszerzenia „{1}”.",
+ "native.binaries.not.supported": "Ta wersja rozszerzenia systemu {0} {1} jest niezgodna z Twoim systemem operacyjnym. Pobierz i zainstaluj wersję rozszerzenia „{2}”.",
"extension.installation.failed": "Nie można pomyślnie zainstalować rozszerzenia języka C/C++. Aby umożliwić poprawne działanie, należy naprawić lub zainstalować ponownie rozszerzenie dla funkcji języka C/C++.",
"remove.extension": "Spróbuj naprawić",
"jason.files.missing": "Nie można pomyślnie zainstalować rozszerzenia języka C/C++. Aby umożliwić poprawne działanie, należy zainstalować ponownie rozszerzenie dla funkcji języka C/C++.",
diff --git a/Extension/i18n/plk/src/packageManager.i18n.json b/Extension/i18n/plk/src/packageManager.i18n.json
index 3808617da0..5382bf56b1 100644
--- a/Extension/i18n/plk/src/packageManager.i18n.json
+++ b/Extension/i18n/plk/src/packageManager.i18n.json
@@ -26,9 +26,9 @@
"zip.file.error": "Błąd pliku ZIP",
"create.directory.error": "Błąd tworzenia katalogu",
"zip.stream.error": "Błąd odczytu strumienia ZIP",
- "read.stream.error": "Błąd w strumieniu odczytu",
"unlink.error": "Błąd podczas odłączania pliku {0}",
"rename.error": "Błąd podczas zmieniania nazwy pliku {0}",
+ "read.stream.error": "Błąd w strumieniu odczytu",
"write.stream.error": "Błąd w strumieniu zapisu",
"file.already.exists": "Ostrzeżenie: plik „{0}” już istnieje i nie został zaktualizowany."
}
\ No newline at end of file
diff --git a/Extension/i18n/ptb/package.i18n.json b/Extension/i18n/ptb/package.i18n.json
index f01e3976e3..32bffd8596 100644
--- a/Extension/i18n/ptb/package.i18n.json
+++ b/Extension/i18n/ptb/package.i18n.json
@@ -23,8 +23,8 @@
"c_cpp.command.vcpkgClipboardInstallSuggested.title": "Copiar o comando de instalação vcpkg para a área de transferência",
"c_cpp.command.vcpkgOnlineHelpSuggested.title": "Visite a página de ajuda do vcpkg",
"c_cpp.command.generateEditorConfig.title": "Gerar o conteúdo do EditorConfig por meio das configurações de Formato do VC",
- "c_cpp.command.GoToNextDirectiveInGroup.title": "Go to next preprocessor directive in conditional group",
- "c_cpp.command.GoToPrevDirectiveInGroup.title": "Go to previous preprocessor directive in conditional group",
+ "c_cpp.command.GoToNextDirectiveInGroup.title": "Ir para a próxima diretiva de pré-processador no grupo condicional",
+ "c_cpp.command.GoToPrevDirectiveInGroup.title": "Ir para a diretiva de pré-processador anterior no grupo condicional",
"c_cpp.configuration.formatting.description": "Configura o mecanismo de formatação",
"c_cpp.configuration.formatting.clangFormat.description": "O clang-format será usado para formatar o código.",
"c_cpp.configuration.formatting.vcFormat.description": "O mecanismo de formatação Visual C++ será usado para formatar o código.",
@@ -170,9 +170,9 @@
"c_cpp.configuration.addNodeAddonIncludePaths.description": "Adicionar caminhos de inclusão de nan e node-addon-api quando eles forem dependências.",
"c_cpp.configuration.renameRequiresIdentifier.description": "Se for true, 'Renomear Símbolo' exigirá um identificador C/C++ válido.",
"c_cpp.configuration.autocompleteAddParentheses.description": "Se esta opção for true, o recurso Preenchimento Automático adicionará automaticamente \"(\" após as chamadas de função e, nesse caso, \")\" também poderá ser adicionado, dependendo do valor da configuração \"editor.autoClosingBrackets\".",
- "c_cpp.configuration.filesExclude.description": "Configure glob patterns for excluding folders (and files if \"C_Cpp.exclusionPolicy\" is changed). These are specific to the C/C++ extension and are in addition to \"files.exclude\", but unlike \"files.exclude\" they are not removed from the Explorer view. Read more about glob patterns [here](https://code.visualstudio.com/docs/editor/codebasics#_advanced-search-options).",
- "c_cpp.configuration.filesExcludeBoolean.description": "The glob pattern to match file paths against. Set to true or false to enable or disable the pattern.",
- "c_cpp.configuration.filesExcludeWhen.description": "Additional check on the siblings of a matching file. Use $(basename) as variable for the matching file name.",
+ "c_cpp.configuration.filesExclude.description": "Configure os padrões glob para excluir pastas (e arquivos se \"C_Cpp.exclusionPolicy\" for alterado). Eles são específicos para a extensão C/C++ e são adicionais a \"files.exclude\", mas ao contrário de \"files.exclude\", eles não são removidos da visualização do Explorer. Leia mais sobre padrões glob [aqui](https://code.visualstudio.com/docs/editor/codebasics#_advanced-search-options).",
+ "c_cpp.configuration.filesExcludeBoolean.description": "O padrão glob ao qual corresponder os caminhos do arquivo. Defina como true ou false para habilitar ou desabilitar o padrão.",
+ "c_cpp.configuration.filesExcludeWhen.description": "Verificação adicional nos irmãos de um arquivo correspondente. Use $(basename) como variável para o nome do arquivo correspondente.",
"c_cpp.configuration.debugger.useBacktickCommandSubstitution.description": "Se esta configuração for true, a substituição do comando do shell do depurador usará o acento grave obsoleto (`).",
"c_cpp.contributes.views.cppReferencesView.title": "C/C++: outros resultados de referências",
"c_cpp.debuggers.pipeTransport.description": "Quando presente, isso instrui o depurador a conectar-se a um computador remoto usando outro executável como um pipe que retransmitirá a entrada/saída padrão entre o VS Code e o executável do back-end do depurador habilitado para MI (como gdb).",
@@ -183,7 +183,7 @@
"c_cpp.debuggers.pipeTransport.pipeProgram.description": "O comando do pipe totalmente qualificado para executar.",
"c_cpp.debuggers.pipeTransport.pipeArgs.description": "Argumentos da linha de comando passados para o programa do pipe para configurar a conexão.",
"c_cpp.debuggers.pipeTransport.pipeEnv.description": "Variáveis de ambiente passadas para o programa do pipe.",
- "c_cpp.debuggers.pipeTransport.quoteArgs.description": "Se os argumentos individuais do pipeProgram contiverem caracteres (como espaços ou tabulações), eles deverão ser colocados entre aspas? Se 'false', o comando debugger não será mais colocado entre aspas automaticamente. \nO padrão é 'true'.",
+ "c_cpp.debuggers.pipeTransport.quoteArgs.description": "Se os argumentos individuais do pipeProgram contiverem caracteres (como espaços ou tabulações), ele deverão ser colocado entre aspas? Se for 'Falso', o comando debugger não será mais colocado automaticamente entre aspas. \r\nO padrão é 'Verdadeiro'.",
"c_cpp.debuggers.logging.description": "Sinalizadores opcionais para determinar quais tipos de mensagens devem ser registrados no Console de Depuração.",
"c_cpp.debuggers.logging.exceptions.description": "Sinalizador opcional para determinar se as mensagens de exceção devem ser registradas no Console de Depuração. Usa true como padrão.",
"c_cpp.debuggers.logging.moduleLoad.description": "Sinalizador opcional para determinar se os eventos de carregamento do módulo devem ser registrados no Console de Depuração. Usa true como padrão.",
@@ -208,7 +208,7 @@
"c_cpp.debuggers.cppdbg.visualizerFile.description": "arquivo .natvis a ser usado durante a depuração deste processo. Esta opção não é compatível com a reformatação automática GDB. Além disso, confira \"showDisplayString\" se estiver usando esta configuração.",
"c_cpp.debuggers.cppvsdbg.visualizerFile.description": "arquivo .natvis a ser usado durante a depuração deste processo.",
"c_cpp.debuggers.showDisplayString.description": "Quando um visualizerFile é especificado, showDisplayString habilita a cadeia de caracteres de exibição. Ativar essa opção pode causar um desempenho mais lento durante a depuração.",
- "c_cpp.debuggers.environment.description": "Variáveis de ambiente para adicionar ao ambiente para o programa. Por exemplo: [ { \"name\": \"squid\", \"value\": \"clam\" } ].",
+ "c_cpp.debuggers.environment.description": "Variáveis de ambiente para adicionar ao ambiente para o programa. Por exemplo: [ { \"name\": \"config\", \"value\": \"Debug\" } ], não [ { \"config\": \"Debug\" } ].",
"c_cpp.debuggers.envFile.description": "Caminho absoluto para um arquivo que contém as definições de variável de ambiente. Este arquivo tem pares chave-valor separados por um sinal de igual por linha. Por exemplo, CHAVE=VALOR",
"c_cpp.debuggers.additionalSOLibSearchPath.description": "Lista separada por ponto e vírgula de diretórios a serem usados para pesquisar arquivos .so. Exemplo: \"c:\\dir1;c:\\dir2\".",
"c_cpp.debuggers.MIMode.description": "Indica o depurador de console ao qual o MIDebugEngine será conectado. Os valores permitidos são \"gdb\" \"lldb\".",
diff --git a/Extension/i18n/ptb/src/main.i18n.json b/Extension/i18n/ptb/src/main.i18n.json
index 2e14d58945..b8e6885761 100644
--- a/Extension/i18n/ptb/src/main.i18n.json
+++ b/Extension/i18n/ptb/src/main.i18n.json
@@ -7,8 +7,7 @@
"architecture.not.supported": "Não há suporte para a arquitetura {0}. ",
"apline.containers.not.supported": "Não há suporte para os contêineres do Alpine.",
"download.button": "Ir para a Página de Download",
- "native.binaries.mismatch.osx": "This Intel version of the extension has been installed. Since you are on an Apple Silicon Mac, we recommend installing the Apple Silicon version of the extension.",
- "native.binaries.not.supported": "Esta versão de {0} da extensão é incompatível com seu sistema operacional. Baixe e instale a versão \"{1}\" da extensão.",
+ "native.binaries.not.supported": "Esta versão {0} {1} da extensão é incompatível com seu sistema operacional. Baixe e instale a versão \"{2}\" da extensão.",
"extension.installation.failed": "A extensão C/C++ não foi instalada com êxito. Será necessário reparar ou reinstalar a extensão dos recursos da linguagem C/C++ para que ela funcione corretamente.",
"remove.extension": "Tentar Reparar",
"jason.files.missing": "A extensão C/C++ não foi instalada com êxito. Será necessário reinstalar a extensão dos recursos da linguagem C/C++ para que ela funcione corretamente.",
diff --git a/Extension/i18n/ptb/src/nativeStrings.i18n.json b/Extension/i18n/ptb/src/nativeStrings.i18n.json
index a92b2dd763..3590ded6dd 100644
--- a/Extension/i18n/ptb/src/nativeStrings.i18n.json
+++ b/Extension/i18n/ptb/src/nativeStrings.i18n.json
@@ -208,9 +208,9 @@
"unrecognized_language_standard_version": "A consulta do compilador retornou uma versão do padrão de linguagem não reconhecida. Nesse caso, será usada a última versão com suporte.",
"intellisense_process_crash_detected": "Falha detectada no processo do IntelliSense.",
"return_values_label": "Valores retornados:",
- "nvcc_compiler_not_found": "Unable to locate nvcc compiler: {0}",
- "nvcc_host_compiler_not_found": "Unable to locate nvcc host compiler: {0}",
- "invoking_nvcc": "Invoking nvcc with command line: {0}",
- "nvcc_host_compile_command_not_found": "Unable to find host compile command in output of nvcc.",
- "unable_to_locate_forced_include": "Unable to locate forced include: {0}"
+ "nvcc_compiler_not_found": "Não é possível localizar o compilador NVCC: {0}",
+ "nvcc_host_compiler_not_found": "Não é possível localizar o compilador de host NVCC: {0}",
+ "invoking_nvcc": "Invocando NVCC com a linha de comando: {0}",
+ "nvcc_host_compile_command_not_found": "Não é possível localizar o comando de compilação de host na saída de NVCC.",
+ "unable_to_locate_forced_include": "Não é possível localizar a inclusão forçada: {0}"
}
\ No newline at end of file
diff --git a/Extension/i18n/ptb/src/packageManager.i18n.json b/Extension/i18n/ptb/src/packageManager.i18n.json
index 3eb6afc35d..dc04f746e1 100644
--- a/Extension/i18n/ptb/src/packageManager.i18n.json
+++ b/Extension/i18n/ptb/src/packageManager.i18n.json
@@ -26,9 +26,9 @@
"zip.file.error": "Erro no arquivo zip",
"create.directory.error": "Erro ao criar o diretório",
"zip.stream.error": "Erro ao ler o fluxo zip",
- "read.stream.error": "Erro no fluxo de leitura",
"unlink.error": "Erro ao desvincular o arquivo {0}",
"rename.error": "Erro ao renomear o arquivo {0}",
+ "read.stream.error": "Erro no fluxo de leitura",
"write.stream.error": "Erro no fluxo de gravação",
"file.already.exists": "Aviso: o arquivo '{0}' já existe e não foi atualizado."
}
\ No newline at end of file
diff --git a/Extension/i18n/rus/package.i18n.json b/Extension/i18n/rus/package.i18n.json
index 858c71d307..02b1b39d8f 100644
--- a/Extension/i18n/rus/package.i18n.json
+++ b/Extension/i18n/rus/package.i18n.json
@@ -23,8 +23,8 @@
"c_cpp.command.vcpkgClipboardInstallSuggested.title": "Копировать команду vcpkg install в буфер обмена",
"c_cpp.command.vcpkgOnlineHelpSuggested.title": "Посетите страницу справки по vcpkg",
"c_cpp.command.generateEditorConfig.title": "Создание содержимого EditorConfig из параметров формата VC",
- "c_cpp.command.GoToNextDirectiveInGroup.title": "Go to next preprocessor directive in conditional group",
- "c_cpp.command.GoToPrevDirectiveInGroup.title": "Go to previous preprocessor directive in conditional group",
+ "c_cpp.command.GoToNextDirectiveInGroup.title": "Перейти к следующей директиве препроцессора в условной группе",
+ "c_cpp.command.GoToPrevDirectiveInGroup.title": "Перейти к предыдущей директиве препроцессора в условной группе",
"c_cpp.configuration.formatting.description": "Настраивает подсистему форматирования.",
"c_cpp.configuration.formatting.clangFormat.description": "Для форматирования кода будет использоваться clang-format.",
"c_cpp.configuration.formatting.vcFormat.description": "Для форматирования кода будет использоваться подсистема форматирования Visual C++.",
@@ -170,9 +170,9 @@
"c_cpp.configuration.addNodeAddonIncludePaths.description": "Добавить пути включения из nan и node-addon-api, если они являются зависимостями.",
"c_cpp.configuration.renameRequiresIdentifier.description": "Если этот параметр имеет значение true, для операции \"Переименование символов\" потребуется указать допустимый идентификатор C/C++.",
"c_cpp.configuration.autocompleteAddParentheses.description": "Если значение — true, автозаполнение автоматически добавит \"(\" после вызовов функции, и в этом случае также может добавить \")\" в зависимости от значения параметра \"editor.autoClosingBrackets\".",
- "c_cpp.configuration.filesExclude.description": "Configure glob patterns for excluding folders (and files if \"C_Cpp.exclusionPolicy\" is changed). These are specific to the C/C++ extension and are in addition to \"files.exclude\", but unlike \"files.exclude\" they are not removed from the Explorer view. Read more about glob patterns [here](https://code.visualstudio.com/docs/editor/codebasics#_advanced-search-options).",
- "c_cpp.configuration.filesExcludeBoolean.description": "The glob pattern to match file paths against. Set to true or false to enable or disable the pattern.",
- "c_cpp.configuration.filesExcludeWhen.description": "Additional check on the siblings of a matching file. Use $(basename) as variable for the matching file name.",
+ "c_cpp.configuration.filesExclude.description": "Настройте стандартные маски для исключения папок (и файлов, если внесено изменение в \"C_Cpp.exclusionPolicy\"). Они специфичны для расширения C/C++ и дополняют \"files.exclude\", но в отличие от \"files.exclude\" они не удаляются из представления обозревателя. Дополнительные сведения о стандартных масках см. [здесь] (https://code.visualstudio.com/docs/editor/codebasics#_advanced-search-options).",
+ "c_cpp.configuration.filesExcludeBoolean.description": "Стандартная маска, соответствующая путям к файлам. Задайте значение true или false, чтобы включить или отключить маску.",
+ "c_cpp.configuration.filesExcludeWhen.description": "Дополнительная проверка элементов того же уровня соответствующего файла. Используйте $(basename) в качестве переменной для соответствующего имени файла.",
"c_cpp.configuration.debugger.useBacktickCommandSubstitution.description": "Если задано значение true, для подстановки команд оболочки отладчика будет использоваться устаревший обратный апостроф (`).",
"c_cpp.contributes.views.cppReferencesView.title": "C/C++: результаты по другим ссылкам",
"c_cpp.debuggers.pipeTransport.description": "При наличии сообщает отладчику о необходимости подключения к удаленному компьютеру с помощью другого исполняемого файла в качестве канала, который будет пересылать стандартный ввод и вывод между VS Code и исполняемым файлом отладчика с поддержкой MI в серверной части (например, gdb).",
@@ -183,7 +183,7 @@
"c_cpp.debuggers.pipeTransport.pipeProgram.description": "Полная команда канала для выполнения.",
"c_cpp.debuggers.pipeTransport.pipeArgs.description": "Аргументы командной строки, переданные в программу канала для настройки подключения.",
"c_cpp.debuggers.pipeTransport.pipeEnv.description": "Переменные среды, переданные в программу канала.",
- "c_cpp.debuggers.pipeTransport.quoteArgs.description": "Определяет, должны ли быть заключены в кавычки отдельные аргументы pipeProgram, если эти аргументы содержат символы (такие как пробелы или символы табуляции). Если задано значение \"false\", команда отладчика больше не будет автоматически заключаться в кавычки. \nЗначение по умолчанию — \"true\".",
+ "c_cpp.debuggers.pipeTransport.quoteArgs.description": "Определяет, должны ли быть заключены в кавычки отдельные аргументы pipeProgram, если эти аргументы содержат символы (такие как пробелы или символы табуляции). Если задано значение \"false\", команда отладчика больше не будет автоматически заключаться в кавычки. \r\nЗначение по умолчанию — \"true\".",
"c_cpp.debuggers.logging.description": "Необязательные флаги для определения типов сообщений, регистрируемых в консоли отладки.",
"c_cpp.debuggers.logging.exceptions.description": "Необязательный флаг, определяющий, следует ли регистрировать сообщения об исключениях в консоли отладки. По умолчанию принимает значение true.",
"c_cpp.debuggers.logging.moduleLoad.description": "Необязательный флаг, определяющий, следует ли регистрировать события загрузки модулей в консоли отладки. По умолчанию принимает значение true.",
@@ -208,7 +208,7 @@
"c_cpp.debuggers.cppdbg.visualizerFile.description": "Файл NATVIS, используемый при отладке этого процесса. Этот параметр несовместим с автоматическим форматированием GDB. Если этот параметр используется, см. также описание \"showDisplayString\".",
"c_cpp.debuggers.cppvsdbg.visualizerFile.description": "Файл NATVIS, используемый при отладке этого процесса.",
"c_cpp.debuggers.showDisplayString.description": "Если указано значение visualizerFile, showDisplayString включит отображаемую строку. Включение этого параметра может привести к снижению производительности во время отладки.",
- "c_cpp.debuggers.environment.description": "Переменные среды для добавления в среду для программы. Пример: [ { \"name\": \"squid\", \"value\": \"clam\" } ].",
+ "c_cpp.debuggers.environment.description": "Переменные среды для добавления в среду для программы. Пример: [ { \"name\": \"config\", \"value\": \"Debug\" } ], not [ { \"config\": \"Debug\" } ].",
"c_cpp.debuggers.envFile.description": "Абсолютный путь к файлу, содержащему определения переменных среды. Этот файл содержит пары \"ключ-значение\", разделенные знаком равенства и разнесенные по строкам. Например, \"ключ=значение\"",
"c_cpp.debuggers.additionalSOLibSearchPath.description": "Список каталогов, разделенных точкой с запятой, который следует использовать для поиска файлов SO. Пример: \"c:\\каталог_1;c:\\каталог_2\".",
"c_cpp.debuggers.MIMode.description": "Указывает отладчик консоли, к которому подключится MIDebugEngine. Допустимые значения: \"gdb\" \"lldb\".",
diff --git a/Extension/i18n/rus/src/main.i18n.json b/Extension/i18n/rus/src/main.i18n.json
index bbf80f969d..f082258183 100644
--- a/Extension/i18n/rus/src/main.i18n.json
+++ b/Extension/i18n/rus/src/main.i18n.json
@@ -7,8 +7,7 @@
"architecture.not.supported": "Архитектура {0} не поддерживается. ",
"apline.containers.not.supported": "Контейнеры Alpine не поддерживаются.",
"download.button": "Перейти к странице скачивания",
- "native.binaries.mismatch.osx": "This Intel version of the extension has been installed. Since you are on an Apple Silicon Mac, we recommend installing the Apple Silicon version of the extension.",
- "native.binaries.not.supported": "Версия расширения для {0} не совместима с вашей ОС. Скачайте и установите версию расширения \"{1}\".",
+ "native.binaries.not.supported": "Версия расширения для {0} {1} несовместима с вашей ОС. Скачайте и установите версию расширения \"{2}\".",
"extension.installation.failed": "Установить расширение C/C++ не удалось. Исправьте или переустановите расширение функций языка C/C++ для корректной работы.",
"remove.extension": "Попытка исправления",
"jason.files.missing": "Установить расширение C/C++ не удалось. Переустановите расширение функций языка C/C++ для корректной работы.",
diff --git a/Extension/i18n/rus/src/nativeStrings.i18n.json b/Extension/i18n/rus/src/nativeStrings.i18n.json
index 0169be5ef2..ebe23a6848 100644
--- a/Extension/i18n/rus/src/nativeStrings.i18n.json
+++ b/Extension/i18n/rus/src/nativeStrings.i18n.json
@@ -208,9 +208,9 @@
"unrecognized_language_standard_version": "Проба компилятора возвратила нераспознанную версию стандарта языка. Вместо этого будет использоваться последняя поддерживаемая версия.",
"intellisense_process_crash_detected": "Обнаружен сбой процесса IntelliSense.",
"return_values_label": "Возвращаемые значения:",
- "nvcc_compiler_not_found": "Unable to locate nvcc compiler: {0}",
- "nvcc_host_compiler_not_found": "Unable to locate nvcc host compiler: {0}",
- "invoking_nvcc": "Invoking nvcc with command line: {0}",
- "nvcc_host_compile_command_not_found": "Unable to find host compile command in output of nvcc.",
- "unable_to_locate_forced_include": "Unable to locate forced include: {0}"
+ "nvcc_compiler_not_found": "Не удалось найти компилятор nvcc: {0}",
+ "nvcc_host_compiler_not_found": "Не удалось найти компилятор узла nvcc: {0}",
+ "invoking_nvcc": "Идет вызов nvcc с помощью командной строки: {0}",
+ "nvcc_host_compile_command_not_found": "Не удалось найти команду компиляции узла в выходных данных nvcc.",
+ "unable_to_locate_forced_include": "Не удалось найти принудительное включение: {0}"
}
\ No newline at end of file
diff --git a/Extension/i18n/rus/src/packageManager.i18n.json b/Extension/i18n/rus/src/packageManager.i18n.json
index 6bb6fed11c..29f40c7c4c 100644
--- a/Extension/i18n/rus/src/packageManager.i18n.json
+++ b/Extension/i18n/rus/src/packageManager.i18n.json
@@ -26,9 +26,9 @@
"zip.file.error": "Ошибка в ZIP-файле",
"create.directory.error": "Ошибка при создании каталога",
"zip.stream.error": "Ошибка при чтении потока zip",
- "read.stream.error": "Ошибка в потоке чтения",
"unlink.error": "Ошибка при удалении связи файла {0}",
"rename.error": "Ошибка при переименовании файла {0}",
+ "read.stream.error": "Ошибка в потоке чтения",
"write.stream.error": "Ошибка в потоке записи",
"file.already.exists": "Предупреждение: файл \"{0}\" уже существует и не был обновлен."
}
\ No newline at end of file
diff --git a/Extension/i18n/trk/package.i18n.json b/Extension/i18n/trk/package.i18n.json
index e5fb9db885..ea4ab6b163 100644
--- a/Extension/i18n/trk/package.i18n.json
+++ b/Extension/i18n/trk/package.i18n.json
@@ -23,8 +23,8 @@
"c_cpp.command.vcpkgClipboardInstallSuggested.title": "vcpkg yükleme komutunu panoya kopyalayın",
"c_cpp.command.vcpkgOnlineHelpSuggested.title": "vcpkg yardım sayfasını ziyaret edin",
"c_cpp.command.generateEditorConfig.title": "VC Biçimi ayarlarından EditorConfig içerikleri oluştur",
- "c_cpp.command.GoToNextDirectiveInGroup.title": "Go to next preprocessor directive in conditional group",
- "c_cpp.command.GoToPrevDirectiveInGroup.title": "Go to previous preprocessor directive in conditional group",
+ "c_cpp.command.GoToNextDirectiveInGroup.title": "Koşullu grupta sonraki ön işlemci yönergesine git",
+ "c_cpp.command.GoToPrevDirectiveInGroup.title": "Koşullu grupta önceki ön işlemci yönergesine git",
"c_cpp.configuration.formatting.description": "Biçimlendirme altyapısını yapılandırır",
"c_cpp.configuration.formatting.clangFormat.description": "Kodu biçimlendirmek için clang-format kullanılacak.",
"c_cpp.configuration.formatting.vcFormat.description": "Kodu biçimlendirmek için Visual C++ biçimlendirme altyapısı kullanılacak.",
@@ -170,9 +170,9 @@
"c_cpp.configuration.addNodeAddonIncludePaths.description": "nan ve node-addon-api bağımlılık olduğunda bunlardan ekleme yolları ekleyin.",
"c_cpp.configuration.renameRequiresIdentifier.description": "True ise, 'Sembolü Yeniden Adlandır' işlemi için geçerli bir C/C++ tanımlayıcısı gerekir.",
"c_cpp.configuration.autocompleteAddParentheses.description": "True ise otomatik tamamla özelliği, işlev çağrılarından sonra otomatik olarak \"(\" ekler. Bazı durumlarda \"editor.autoClosingBrackets\" ayarının değerine bağlı olarak \")\" karakteri de eklenebilir.",
- "c_cpp.configuration.filesExclude.description": "Configure glob patterns for excluding folders (and files if \"C_Cpp.exclusionPolicy\" is changed). These are specific to the C/C++ extension and are in addition to \"files.exclude\", but unlike \"files.exclude\" they are not removed from the Explorer view. Read more about glob patterns [here](https://code.visualstudio.com/docs/editor/codebasics#_advanced-search-options).",
- "c_cpp.configuration.filesExcludeBoolean.description": "The glob pattern to match file paths against. Set to true or false to enable or disable the pattern.",
- "c_cpp.configuration.filesExcludeWhen.description": "Additional check on the siblings of a matching file. Use $(basename) as variable for the matching file name.",
+ "c_cpp.configuration.filesExclude.description": "Klasörleri (ve \"C_Cpp.exclusionPolicy\" değiştirilmişse dosyaları) dışlamak için glob desenlerini yapılandırın. Bunlar C/C++ uzantısına özgüdür ve \"files.exclude\" ayarına ektir ancak \"files.exclude\" ayarından farklı olarak Explorer görünümünden kaldırılmazlar. Glob desenleri hakkında [burada] (https://code.visualstudio.com/docs/editor/codebasics#_advanced-search-options) daha fazlasını okuyun.",
+ "c_cpp.configuration.filesExcludeBoolean.description": "Dosya yollarıyla eşleşecek glob deseni. Deseni etkinleştirmek veya devre dışı bırakmak için true ya da false olarak ayarlayın.",
+ "c_cpp.configuration.filesExcludeWhen.description": "Eşleşen bir dosyanın eşdüzey öğeleri üzerinde ek denetim. Eşleşen dosya adı için değişken olarak $(basename) kullanın.",
"c_cpp.configuration.debugger.useBacktickCommandSubstitution.description": "True ise, hata ayıklayıcı kabuk komut değiştirme eski kesme işaretini (`) kullanır.",
"c_cpp.contributes.views.cppReferencesView.title": "C/C++: Diğer başvuru sonuçları",
"c_cpp.debuggers.pipeTransport.description": "Mevcut olduğunda, hata ayıklayıcısına, VS Code ile MI özellikli hata ayıklayıcısı arka uç yürütülebilir dosyası (gdb gibi) arasında standart giriş/çıkış geçişi sağlayan bir kanal olarak görev yapacak başka bir yürütülebilir dosya aracılığıyla uzak bilgisayara bağlanmasını söyler.",
@@ -183,7 +183,7 @@
"c_cpp.debuggers.pipeTransport.pipeProgram.description": "Çalıştırılacak tam kanal komutu.",
"c_cpp.debuggers.pipeTransport.pipeArgs.description": "Bağlantıyı yapılandırmak için kanal programına geçirilen komut satırı bağımsız değişkenleri.",
"c_cpp.debuggers.pipeTransport.pipeEnv.description": "Kanal programına geçirilen ortam değişkenleri.",
- "c_cpp.debuggers.pipeTransport.quoteArgs.description": "pipeProgram'a ait tek tek bağımsız değişkenler, boşluk veya sekme gibi karakterler içeriyorsa bunlar tırnak içine alınmalı mı? 'False' olarak ayarlanırsa, hata ayıklayıcısı komutu otomatik olarak tırnak içine alınmaz. \nVarsayılan değer: 'true'.",
+ "c_cpp.debuggers.pipeTransport.quoteArgs.description": "pipeProgram'a ait tek tek bağımsız değişkenler, boşluk veya sekme gibi karakterler içeriyorsa bunlar tırnak içine alınmalı mı? 'False' olarak ayarlanırsa hata ayıklayıcısı komutu artık otomatik olarak tırnak içine alınmaz. \r\nVarsayılan değer: 'true'.",
"c_cpp.debuggers.logging.description": "Hata Ayıklama Konsoluna ne tür iletilerin kaydedilmesi gerektiğini belirleyen isteğe bağlı bayraklar.",
"c_cpp.debuggers.logging.exceptions.description": "Özel durum iletilerinin Hata Ayıklama Konsoluna kaydedilmesi gerekip gerekmediğini belirleyen isteğe bağlı bayrak. Varsayılan olarak true değerini alır.",
"c_cpp.debuggers.logging.moduleLoad.description": "Modül yükleme olaylarının Hata Ayıklama Konsoluna kaydedilmesi gerekip gerekmediğini belirleyen isteğe bağlı bayrak. Varsayılan olarak true değerini alır.",
@@ -208,7 +208,7 @@
"c_cpp.debuggers.cppdbg.visualizerFile.description": "Bu işlemde hata ayıklanırken kullanılacak .natvis dosyası. Bu seçenek, GDB düzgün yazdırma ile uyumlu değil. Lütfen bu ayar kullanılıyorsa ayrıca bkz: \"showDisplayString\".",
"c_cpp.debuggers.cppvsdbg.visualizerFile.description": "Bu işlemde hata ayıklanırken kullanılacak .natvis dosyası.",
"c_cpp.debuggers.showDisplayString.description": "Bir visualizerFile belirtildiğinde showDisplayString, görünen dizeyi etkinleştirir. Bu seçeneğin etkinleştirilmesi hata ayıklama sırasında daha düşük performansa neden olabilir.",
- "c_cpp.debuggers.environment.description": "Program ortamına eklenecek ortam değişkenleri. Örnek: [ { \"name\": \"squid\", \"value\": \"clam\" } ].",
+ "c_cpp.debuggers.environment.description": "Program ortamına eklenecek ortam değişkenleri. Örnek: [ { \"name\": \"config\", \"value\": \"Debug\" } ], [ { \"config\": \"Debug\" } ] değil.",
"c_cpp.debuggers.envFile.description": "Ortam değişkeni tanımlarını içeren bir dosyanın mutlak yolu. Bu dosyada, satır başına eşittir işaretiyle ayrılmış anahtar değer çiftleri bulunur. Ör. ANAHTAR=DEĞER",
"c_cpp.debuggers.additionalSOLibSearchPath.description": ".so dosyalarını aramak için kullanılacak dizinlerin noktalı virgülle ayrılmış listesi. Örnek: \"c:\\dizin1;c:\\dizin2\".",
"c_cpp.debuggers.MIMode.description": "MIDebugEngine'in bağlanacağı konsol hata ayıklayıcısını belirtir. İzin verilen değerler: \"gdb\" \"lldb\".",
diff --git a/Extension/i18n/trk/src/main.i18n.json b/Extension/i18n/trk/src/main.i18n.json
index 3ad5324ca2..1e78f2d9ec 100644
--- a/Extension/i18n/trk/src/main.i18n.json
+++ b/Extension/i18n/trk/src/main.i18n.json
@@ -7,8 +7,7 @@
"architecture.not.supported": "{0} mimarisi desteklemiyor.",
"apline.containers.not.supported": "Alpine kapsayıcıları desteklenmiyor.",
"download.button": "İndirmeler Sayfasına Git",
- "native.binaries.mismatch.osx": "This Intel version of the extension has been installed. Since you are on an Apple Silicon Mac, we recommend installing the Apple Silicon version of the extension.",
- "native.binaries.not.supported": "Uzantının bu {0} sürümü, işletim sisteminizle uyumsuz. Lütfen uzantının \"{1}\" sürümünü indirip yükleyin.",
+ "native.binaries.not.supported": "Uzantının bu {0} {1} sürümü, işletim sisteminizle uyumlu değil. Lütfen uzantının \"{2}\" sürümünü indirip yükleyin.",
"extension.installation.failed": "C/C++ uzantısı başarıyla yüklenemedi. C/C++ dil özelliklerinin düzgün çalışması için uzantıyı onarmanız veya yeniden yüklemeniz gerekir.",
"remove.extension": "Onarmayı Dene",
"jason.files.missing": "C/C++ uzantısı başarıyla yüklenemedi. C/C++ dil özelliklerinin düzgün çalışabilmesi için uzantıyı yeniden yüklemeniz gerekir.",
diff --git a/Extension/i18n/trk/src/nativeStrings.i18n.json b/Extension/i18n/trk/src/nativeStrings.i18n.json
index cbc3447326..ceb59046ca 100644
--- a/Extension/i18n/trk/src/nativeStrings.i18n.json
+++ b/Extension/i18n/trk/src/nativeStrings.i18n.json
@@ -208,9 +208,9 @@
"unrecognized_language_standard_version": "Derleyici sorgusu, tanınmayan bir dil standardı sürümü döndürdü. Bunun yerine desteklenen en güncel sürüm kullanılacak.",
"intellisense_process_crash_detected": "IntelliSense işlem kilitlenmesi saptandı.",
"return_values_label": "Dönüş değerleri:",
- "nvcc_compiler_not_found": "Unable to locate nvcc compiler: {0}",
- "nvcc_host_compiler_not_found": "Unable to locate nvcc host compiler: {0}",
- "invoking_nvcc": "Invoking nvcc with command line: {0}",
- "nvcc_host_compile_command_not_found": "Unable to find host compile command in output of nvcc.",
- "unable_to_locate_forced_include": "Unable to locate forced include: {0}"
+ "nvcc_compiler_not_found": "Nvcc derleyicisi bulunamıyor: {0}",
+ "nvcc_host_compiler_not_found": "Nvcc konak derleyicisi bulunamıyor: {0}",
+ "invoking_nvcc": "Komut satırı ile nvcc çağrılıyor: {0}",
+ "nvcc_host_compile_command_not_found": "Nvcc çıkışındaki konak derleme komutu bulunamıyor.",
+ "unable_to_locate_forced_include": "Zorlamalı ekleme bulunamıyor: {0}"
}
\ No newline at end of file
diff --git a/Extension/i18n/trk/src/packageManager.i18n.json b/Extension/i18n/trk/src/packageManager.i18n.json
index 5e61061548..0a15fe3f47 100644
--- a/Extension/i18n/trk/src/packageManager.i18n.json
+++ b/Extension/i18n/trk/src/packageManager.i18n.json
@@ -26,9 +26,9 @@
"zip.file.error": "Zip dosyası hatası",
"create.directory.error": "Dizin oluşturulurken hata oluştu",
"zip.stream.error": "Zip akışı okuma hatası",
- "read.stream.error": "Akış okunurken hata",
"unlink.error": "{0} dosyasının bağlantısı kaldırılırken hata oluştu",
"rename.error": "{0} dosyası yeniden adlandırılırken hata oluştu",
+ "read.stream.error": "Akış okunurken hata",
"write.stream.error": "Akışa yazılırken hata",
"file.already.exists": "Uyarı: '{0}' dosyası zaten var ve güncelleştirilmedi."
}
\ No newline at end of file
diff --git a/Extension/package.json b/Extension/package.json
index e2bc358872..d9208d90aa 100644
--- a/Extension/package.json
+++ b/Extension/package.json
@@ -2,7 +2,7 @@
"name": "cpptools",
"displayName": "C/C++",
"description": "C/C++ IntelliSense, debugging, and code browsing.",
- "version": "1.2.2-main",
+ "version": "1.4.0-main",
"publisher": "ms-vscode",
"icon": "LanguageCCPP_color_128x.png",
"readme": "README.md",
@@ -1680,6 +1680,28 @@
"default": ""
}
}
+ },
+ "stopAtConnect": {
+ "type": "boolean",
+ "description": "%c_cpp.debuggers.stopAtConnect.description%",
+ "default": false
+ },
+ "hardwareBreakpoints": {
+ "description": "%c_cpp.debuggers.hardwareBreakpoints.description%",
+ "default": {},
+ "type": "object",
+ "properties": {
+ "require": {
+ "type": "boolean",
+ "description": "%c_cpp.debuggers.hardwareBreakpoints.require.description%",
+ "default": false
+ },
+ "limit": {
+ "type": "integer",
+ "description": "%c_cpp.debuggers.hardwareBreakpoints.limit.description%",
+ "default": 0
+ }
+ }
}
}
},
@@ -2434,14 +2456,14 @@
"@types/vscode": "1.53.0",
"@types/which": "^1.3.2",
"@types/yauzl": "^2.9.1",
- "@typescript-eslint/eslint-plugin": "^2.19.2",
- "@typescript-eslint/eslint-plugin-tslint": "^2.19.2",
- "@typescript-eslint/parser": "^2.19.2",
+ "@typescript-eslint/eslint-plugin": "^4.22.1",
+ "@typescript-eslint/eslint-plugin-tslint": "^4.22.1",
+ "@typescript-eslint/parser": "^4.22.1",
"async-child-process": "^1.1.1",
"await-notify": "^1.0.1",
- "eslint": "^6.8.0",
- "eslint-plugin-import": "^2.20.1",
- "eslint-plugin-jsdoc": "^21.0.0",
+ "eslint": "^7.25.0",
+ "eslint-plugin-import": "^2.22.1",
+ "eslint-plugin-jsdoc": "^33.1.0",
"event-stream": "^4.0.1",
"fs-extra": "^8.1.0",
"glob": "^7.1.6",
@@ -2455,6 +2477,7 @@
"http-proxy-agent": "^2.1.0",
"minimist": "^1.2.5",
"mocha": "^8.3.2",
+ "parse-git-config": "^3.0.0",
"parse5": "^5.1.0",
"parse5-traverse": "^1.0.3",
"ts-loader": "^8.1.0",
@@ -2487,12 +2510,13 @@
"resolutions": {
"**/mkdirp/minimist": "^0.2.1",
"yargs-parser": "^15.0.1",
- "y18n": "^5.0.5"
+ "y18n": "^5.0.5",
+ "hosted-git-info": "^3.0.8"
},
"runtimeDependencies": [
{
"description": "C/C++ language components (Linux / x86_64)",
- "url": "https://go.microsoft.com/fwlink/?linkid=2156408",
+ "url": "https://go.microsoft.com/fwlink/?linkid=2161011",
"platforms": [
"linux"
],
@@ -2503,11 +2527,11 @@
"./bin/cpptools",
"./bin/cpptools-srv"
],
- "integrity": "81740FC42FDFBEC9AF72EE69B6FC985841E8879DE7197D1859B339BE0418E2C2"
+ "integrity": "7C43AA78021C5DB8F6DE9751EC8435D2BE1137CAC861801CDFADAA4B48A42AC3"
},
{
"description": "C/C++ language components (Linux / armhf)",
- "url": "https://go.microsoft.com/fwlink/?linkid=2156409",
+ "url": "https://go.microsoft.com/fwlink/?linkid=2160914",
"platforms": [
"linux"
],
@@ -2518,11 +2542,11 @@
"./bin/cpptools",
"./bin/cpptools-srv"
],
- "integrity": "E12B49A74D9E6D7D43BE7ED88E470B8871E1750392D48B0FCFEED4C7E5C523FB"
+ "integrity": "ED83E6E0F5784323CDF42BA1EF57CDFFBF2A81D468B08C8ECF126A2D042343F2"
},
{
"description": "C/C++ language components (Linux / aarch64)",
- "url": "https://go.microsoft.com/fwlink/?linkid=2156407",
+ "url": "https://go.microsoft.com/fwlink/?linkid=2160915",
"platforms": [
"linux"
],
@@ -2533,23 +2557,41 @@
"./bin/cpptools",
"./bin/cpptools-srv"
],
- "integrity": "F84424B48790EAE110F0B4ED35D8DEE2347754C79C9A1879BCE5A93038A249A3"
+ "integrity": "52DD114FF466FA3542D7F98F12716E4296712986CA4908B18DCC039209B8D2CC"
},
{
"description": "C/C++ language components (OS X)",
- "url": "https://go.microsoft.com/fwlink/?linkid=2156301",
+ "url": "https://go.microsoft.com/fwlink/?linkid=2161012",
"platforms": [
"darwin"
],
+ "architectures": [
+ "x64"
+ ],
"binaries": [
"./bin/cpptools",
"./bin/cpptools-srv"
],
- "integrity": "448A17E1D7C639C99F0AE47A88705956BA03F8CFA401C0C00CD074945275B513"
+ "integrity": "53654F3D21C5D470D3C05EA48CFB7AB3CB197344049DC55AEB07374AFECD1587"
+ },
+ {
+ "description": "C/C++ language components (OS X ARM64)",
+ "url": "https://go.microsoft.com/fwlink/?linkid=2160918",
+ "platforms": [
+ "darwin"
+ ],
+ "architectures": [
+ "arm64"
+ ],
+ "binaries": [
+ "./bin/cpptools",
+ "./bin/cpptools-srv"
+ ],
+ "integrity": "E00370987D321E5AB58894B95F1545B52F59ED8E548BE1CBC8393F8B63562BDE"
},
{
"description": "C/C++ language components (Windows)",
- "url": "https://go.microsoft.com/fwlink/?linkid=2156410",
+ "url": "https://go.microsoft.com/fwlink/?linkid=2160913",
"platforms": [
"win32"
],
@@ -2561,11 +2603,11 @@
"./bin/cpptools.exe",
"./bin/cpptools-srv.exe"
],
- "integrity": "39B7EA69F9CDC1B2B98DBFD189617640029E6C9CBDFE9BF6789B4E013D6550F4"
+ "integrity": "970504DB40E0B54E48075C1FBCE0F34AB674DE3F1CCAD51FFA04689513CC8013"
},
{
"description": "C/C++ language components (Windows ARM64)",
- "url": "https://go.microsoft.com/fwlink/?linkid=2156502",
+ "url": "https://go.microsoft.com/fwlink/?linkid=2160916",
"platforms": [
"win32"
],
@@ -2576,11 +2618,11 @@
"./bin/cpptools.exe",
"./bin/cpptools-srv.exe"
],
- "integrity": "30B836279F948CDFD751546E679F459FE2CFD7BD578952AF1A1D8943D5C4A0F6"
+ "integrity": "E85CF0C80B64F940F73E158966749C0A95D122907170CACECDCBB118986D0E57"
},
{
"description": "ClangFormat (Linux / x86_64)",
- "url": "https://go.microsoft.com/fwlink/?LinkID=2152861",
+ "url": "https://go.microsoft.com/fwlink/?LinkID=2162325",
"platforms": [
"linux"
],
@@ -2590,11 +2632,11 @@
"binaries": [
"./LLVM/bin/clang-format"
],
- "integrity": "B29779E4FE3D03094655FD24CC17B55B41518EDDCCB1E3DF3F4665F9685152E0"
+ "integrity": "3F10BAD92274A07DB5DE0FD922C0CEDA034DECDB9E73DC477DD43CF30B500A7B"
},
{
"description": "ClangFormat (Linux / armhf)",
- "url": "https://go.microsoft.com/fwlink/?LinkID=2152860",
+ "url": "https://go.microsoft.com/fwlink/?LinkID=2162327",
"platforms": [
"linux"
],
@@ -2604,11 +2646,11 @@
"binaries": [
"./LLVM/bin/clang-format"
],
- "integrity": "F1CD21F581715A2C2A3B10C8D33FF81E5CBCD58856AA73CA56A88B5F085EA0D7"
+ "integrity": "1098291D78FB3E9411C445218BE14D1A96E7242E0B70549DA499C6551D8CA538"
},
{
"description": "ClangFormat (Linux / aarch64)",
- "url": "https://go.microsoft.com/fwlink/?LinkID=2152922",
+ "url": "https://go.microsoft.com/fwlink/?LinkID=2162412",
"platforms": [
"linux"
],
@@ -2618,22 +2660,39 @@
"binaries": [
"./LLVM/bin/clang-format"
],
- "integrity": "97B2A5A274F53FBB37485A383AD379CD556E85413BF843F0F0FD10536A0D705D"
+ "integrity": "CD5578A21C8D515D15C0611621E44C03DE4E667EFB4EE1A0DE18B08FD9B96794"
},
{
"description": "ClangFormat (OS X)",
- "url": "https://go.microsoft.com/fwlink/?LinkID=2152859",
+ "url": "https://go.microsoft.com/fwlink/?LinkID=2162416",
"platforms": [
"darwin"
],
+ "architectures": [
+ "x64"
+ ],
+ "binaries": [
+ "./LLVM/bin/clang-format.darwin"
+ ],
+ "integrity": "62A2ECB43511129F920D87BAE9230A803B54712038BCCB485F8F10B84B1A2000"
+ },
+ {
+ "description": "ClangFormat (OS X arm64)",
+ "url": "https://go.microsoft.com/fwlink/?LinkID=2162413",
+ "platforms": [
+ "darwin"
+ ],
+ "architectures": [
+ "arm64"
+ ],
"binaries": [
"./LLVM/bin/clang-format.darwin"
],
- "integrity": "7AA436BA25E3404DC658A137188BEC65FF2532D1FEB314ABBBC5EBC9AAF5CCF7"
+ "integrity": "90AD3B05EC9C0A706C440B99AC39000F97EFE8BBAB9A000834E18F8112468147"
},
{
"description": "ClangFormat (Windows x86)",
- "url": "https://go.microsoft.com/fwlink/?LinkID=2152921",
+ "url": "https://go.microsoft.com/fwlink/?LinkID=2162326",
"platforms": [
"win32"
],
@@ -2643,11 +2702,11 @@
"binaries": [
"./LLVM/bin/clang-format.exe"
],
- "integrity": "993A65F61F4BF6CA6FEF6F9C1B6EB4341CE63F30A72272CABA65392695764DA7"
+ "integrity": "928AF7C36F0E148537D8DF4D7AEEAD8A18DF9E4CA5C8BF23E49776EFBE078453"
},
{
"description": "ClangFormat (Windows x64)",
- "url": "https://go.microsoft.com/fwlink/?LinkID=2152923",
+ "url": "https://go.microsoft.com/fwlink/?LinkID=2162415",
"platforms": [
"win32"
],
@@ -2657,11 +2716,11 @@
"binaries": [
"./LLVM/bin/clang-format.exe"
],
- "integrity": "5E271FD44792B3675136A34466F67A876174B7818533CF37486372E43E014E62"
+ "integrity": "7977B82D6BD88C1AEB5071146EDCB45976D1EA66E312EEF9156957CAD0702F35"
},
{
"description": "ClangFormat (Windows arm64)",
- "url": "https://go.microsoft.com/fwlink/?LinkID=2152862",
+ "url": "https://go.microsoft.com/fwlink/?LinkID=2162414",
"platforms": [
"win32"
],
@@ -2671,7 +2730,7 @@
"binaries": [
"./LLVM/bin/clang-format.exe"
],
- "integrity": "9944827F70A8C53127B1A7860401923DED2DB7FBAD75E7A8106636891C11F832"
+ "integrity": "6756365C82B5BD90C6A40C13CF8E3599E4A1DB50628111FFDB3A76FF85256BA4"
},
{
"description": "Mono Framework Assemblies",
@@ -2767,7 +2826,7 @@
},
{
"description": "Visual Studio Windows Debugger",
- "url": "https://go.microsoft.com/fwlink/?linkid=2153010",
+ "url": "https://go.microsoft.com/fwlink/?linkid=2162486",
"platforms": [
"win32"
],
@@ -2778,7 +2837,7 @@
"binaries": [
"./debugAdapters/vsdbg/bin/vsdbg.exe"
],
- "integrity": "52C4234976D527A7BF02EB2E8844F3C605DC4BD1D3847F83C8675CD23967BAB3"
+ "integrity": "E5046509D510086B99F171595114220AD8E9F820E7238B6A5199CD78B9AD2078"
}
]
-}
\ No newline at end of file
+}
diff --git a/Extension/package.nls.json b/Extension/package.nls.json
index e65c5588bc..24ea39dd14 100644
--- a/Extension/package.nls.json
+++ b/Extension/package.nls.json
@@ -178,7 +178,7 @@
"c_cpp.debuggers.pipeTransport.pipeProgram.description": "The fully qualified pipe command to execute.",
"c_cpp.debuggers.pipeTransport.pipeArgs.description": "Command line arguments passed to the pipe program to configure the connection.",
"c_cpp.debuggers.pipeTransport.pipeEnv.description": "Environment variables passed to the pipe program.",
- "c_cpp.debuggers.pipeTransport.quoteArgs.description": "If the pipeProgram's individual arguments contain characters (such as spaces or tabs), should it be quoted? If 'false', the debugger command will no longer be automatically quoted. \nDefault is 'true'.",
+ "c_cpp.debuggers.pipeTransport.quoteArgs.description": "If the pipeProgram's individual arguments contain characters (such as spaces or tabs), should it be quoted? If 'false', the debugger command will no longer be automatically quoted. Default is 'true'.",
"c_cpp.debuggers.logging.description": "Optional flags to determine what types of messages should be logged to the Debug Console.",
"c_cpp.debuggers.logging.exceptions.description": "Optional flag to determine whether exception messages should be logged to the Debug Console. Defaults to true.",
"c_cpp.debuggers.logging.moduleLoad.description": "Optional flag to determine whether module load events should be logged to the Debug Console. Defaults to true.",
@@ -203,7 +203,7 @@
"c_cpp.debuggers.cppdbg.visualizerFile.description": ".natvis file to be used when debugging this process. This option is not compatible with GDB pretty printing. Please also see \"showDisplayString\" if using this setting.",
"c_cpp.debuggers.cppvsdbg.visualizerFile.description": ".natvis file to be used when debugging this process.",
"c_cpp.debuggers.showDisplayString.description": "When a visualizerFile is specified, showDisplayString will enable the display string. Turning this option on can cause slower performance during debugging.",
- "c_cpp.debuggers.environment.description": "Environment variables to add to the environment for the program. Example: [ { \"name\": \"squid\", \"value\": \"clam\" } ].",
+ "c_cpp.debuggers.environment.description": "Environment variables to add to the environment for the program. Example: [ { \"name\": \"config\", \"value\": \"Debug\" } ], not [ { \"config\": \"Debug\" } ].",
"c_cpp.debuggers.envFile.description": "Absolute path to a file containing environment variable definitions. This file has key value pairs separated by an equals sign per line. E.g. KEY=VALUE",
"c_cpp.debuggers.additionalSOLibSearchPath.description": "Semicolon separated list of directories to use to search for .so files. Example: \"c:\\dir1;c:\\dir2\".",
"c_cpp.debuggers.MIMode.description": "Indicates the console debugger that the MIDebugEngine will connect to. Allowed values are \"gdb\" \"lldb\".",
@@ -235,6 +235,10 @@
"c_cpp.debuggers.symbolLoadInfo.loadAll.description": "If true, symbols for all libs will be loaded, otherwise no solib symbols will be loaded. Default value is true.",
"c_cpp.debuggers.symbolLoadInfo.exceptionList.description": "List of filenames (wildcards allowed) separated by semicolons ';'. Modifies behavior of LoadAll. If LoadAll is true then don't load symbols for libs that match any name in the list. Otherwise only load symbols for libs that match. Example: \"foo.so;bar.so\"",
"c_cpp.debuggers.requireExactSource.description": "Optional flag to require current source code to match the pdb.",
+ "c_cpp.debuggers.stopAtConnect.description": "If true, the debugger should stop after connecting to the target. If false, the debugger will continue after connecting. Defaults to false.",
+ "c_cpp.debuggers.hardwareBreakpoints.description": "Explicit control of hardware breakpoint behavior for remote targets.",
+ "c_cpp.debuggers.hardwareBreakpoints.require.description": "If true, always use hardware breakpoints. Defaults to false.",
+ "c_cpp.debuggers.hardwareBreakpoints.limit.description": "Optional limit on the number of available hardware breakpoints to use. Only enforced when \"require\" is true and \"limit\" is greater than 0. Defaults to 0.",
"c_cpp.taskDefinitions.name.description": "The name of the task",
"c_cpp.taskDefinitions.command.description": "The path to either a compiler or script that performs compilation",
"c_cpp.taskDefinitions.args.description": "Additional arguments to pass to the compiler or compilation script",
diff --git a/Extension/src/Debugger/attachQuickPick.ts b/Extension/src/Debugger/attachQuickPick.ts
index ba966b7ace..677e87bb9a 100644
--- a/Extension/src/Debugger/attachQuickPick.ts
+++ b/Extension/src/Debugger/attachQuickPick.ts
@@ -30,44 +30,42 @@ export interface AttachItem extends vscode.QuickPickItem {
id?: string;
}
-export function showQuickPick(getAttachItems: () => Promise): Promise {
- return getAttachItems().then(processEntries =>
- new Promise((resolve, reject) => {
- const quickPick: vscode.QuickPick = vscode.window.createQuickPick();
- quickPick.title = localize("attach.to.process", "Attach to process");
- quickPick.canSelectMany = false;
- quickPick.matchOnDescription = true;
- quickPick.matchOnDetail = true;
- quickPick.placeholder = localize("select.process.attach", "Select the process to attach to");
- quickPick.items = processEntries;
- quickPick.buttons = [new RefreshButton()];
-
- const disposables: vscode.Disposable[] = [];
-
- quickPick.onDidTriggerButton(button => {
- getAttachItems().then(processEntries => quickPick.items = processEntries);
- }, undefined, disposables);
-
- quickPick.onDidAccept(() => {
- if (quickPick.selectedItems.length !== 1) {
- reject(new Error(localize("process.not.selected", "Process not selected.")));
- }
+// We should not await on this function.
+export async function showQuickPick(getAttachItems: () => Promise): Promise {
+ const processEntries: AttachItem[] = await getAttachItems();
+ return new Promise((resolve, reject) => {
+ const quickPick: vscode.QuickPick = vscode.window.createQuickPick();
+ quickPick.title = localize("attach.to.process", "Attach to process");
+ quickPick.canSelectMany = false;
+ quickPick.matchOnDescription = true;
+ quickPick.matchOnDetail = true;
+ quickPick.placeholder = localize("select.process.attach", "Select the process to attach to");
+ quickPick.buttons = [new RefreshButton()];
+ quickPick.items = processEntries;
+ const disposables: vscode.Disposable[] = [];
+
+ quickPick.onDidTriggerButton(async () => { quickPick.items = await getAttachItems(); }, undefined, disposables);
+
+ quickPick.onDidAccept(() => {
+ if (quickPick.selectedItems.length !== 1) {
+ reject(new Error(localize("process.not.selected", "Process not selected.")));
+ }
- const selectedId: string | undefined = quickPick.selectedItems[0].id;
+ const selectedId: string | undefined = quickPick.selectedItems[0].id;
- disposables.forEach(item => item.dispose());
- quickPick.dispose();
+ disposables.forEach(item => item.dispose());
+ quickPick.dispose();
- resolve(selectedId);
- }, undefined, disposables);
+ resolve(selectedId);
+ }, undefined, disposables);
- quickPick.onDidHide(() => {
- disposables.forEach(item => item.dispose());
- quickPick.dispose();
+ quickPick.onDidHide(() => {
+ disposables.forEach(item => item.dispose());
+ quickPick.dispose();
- reject(new Error(localize("process.not.selected", "Process not selected.")));
- }, undefined, disposables);
+ reject(new Error(localize("process.not.selected", "Process not selected.")));
+ }, undefined, disposables);
- quickPick.show();
- }));
+ quickPick.show();
+ });
}
diff --git a/Extension/src/Debugger/attachToProcess.ts b/Extension/src/Debugger/attachToProcess.ts
index aaca23a63c..0d827c049e 100644
--- a/Extension/src/Debugger/attachToProcess.ts
+++ b/Extension/src/Debugger/attachToProcess.ts
@@ -8,7 +8,6 @@ import { AttachItem, showQuickPick } from './attachQuickPick';
import { CppSettings } from '../LanguageServer/settings';
import * as debugUtils from './utils';
-import * as fs from 'fs';
import * as os from 'os';
import * as path from 'path';
import * as util from '../common';
@@ -25,14 +24,13 @@ export interface AttachItemsProvider {
export class AttachPicker {
constructor(private attachItemsProvider: AttachItemsProvider) { }
- public ShowAttachEntries(): Promise {
- return util.isExtensionReady().then(ready => {
- if (!ready) {
- util.displayExtensionNotReadyPrompt();
- } else {
- return showQuickPick(() => this.attachItemsProvider.getAttachItems());
- }
- });
+ // We should not await on this function.
+ public async ShowAttachEntries(): Promise {
+ if (!await util.isExtensionReady()) {
+ util.displayExtensionNotReadyPrompt();
+ } else {
+ return showQuickPick(() => this.attachItemsProvider.getAttachItems());
+ }
}
}
@@ -43,66 +41,66 @@ export class RemoteAttachPicker {
private _channel: vscode.OutputChannel;
- public ShowAttachEntries(config: any): Promise {
- return util.isExtensionReady().then(ready => {
- if (!ready) {
- util.displayExtensionNotReadyPrompt();
- } else {
- this._channel.clear();
+ public async ShowAttachEntries(config: any): Promise {
+ if (!await util.isExtensionReady()) {
+ util.displayExtensionNotReadyPrompt();
+ } else {
+ this._channel.clear();
- const pipeTransport: any = config ? config.pipeTransport : undefined;
+ const pipeTransport: any = config ? config.pipeTransport : undefined;
- if (!pipeTransport) {
- return Promise.reject(new Error(localize("no.pipetransport", "Chosen debug configuration does not contain {0}", "pipeTransport")));
- }
+ if (!pipeTransport) {
+ throw new Error(localize("no.pipetransport", "Chosen debug configuration does not contain {0}", "pipeTransport"));
+ }
- let pipeProgram: string | undefined;
+ let pipeProgram: string | undefined;
- if (os.platform() === 'win32' &&
- pipeTransport.pipeProgram &&
- !fs.existsSync(pipeTransport.pipeProgram)) {
- const pipeProgramStr: string = pipeTransport.pipeProgram.toLowerCase().trim();
- const expectedArch: debugUtils.ArchType = debugUtils.ArchType[process.arch as keyof typeof debugUtils.ArchType];
+ if (os.platform() === 'win32' &&
+ pipeTransport.pipeProgram &&
+ !await util.checkFileExists(pipeTransport.pipeProgram)) {
+ const pipeProgramStr: string = pipeTransport.pipeProgram.toLowerCase().trim();
+ const expectedArch: debugUtils.ArchType = debugUtils.ArchType[process.arch as keyof typeof debugUtils.ArchType];
- // Check for pipeProgram
- if (!fs.existsSync(config.pipeTransport.pipeProgram)) {
- pipeProgram = debugUtils.ArchitectureReplacer.checkAndReplaceWSLPipeProgram(pipeProgramStr, expectedArch);
- }
+ // Check for pipeProgram
+ if (!await util.checkFileExists(config.pipeTransport.pipeProgram)) {
+ pipeProgram = debugUtils.ArchitectureReplacer.checkAndReplaceWSLPipeProgram(pipeProgramStr, expectedArch);
+ }
- // If pipeProgram does not get replaced and there is a pipeCwd, concatenate with pipeProgramStr and attempt to replace.
- if (!pipeProgram && config.pipeTransport.pipeCwd) {
- const pipeCwdStr: string = config.pipeTransport.pipeCwd.toLowerCase().trim();
- const newPipeProgramStr: string = path.join(pipeCwdStr, pipeProgramStr);
+ // If pipeProgram does not get replaced and there is a pipeCwd, concatenate with pipeProgramStr and attempt to replace.
+ if (!pipeProgram && config.pipeTransport.pipeCwd) {
+ const pipeCwdStr: string = config.pipeTransport.pipeCwd.toLowerCase().trim();
+ const newPipeProgramStr: string = path.join(pipeCwdStr, pipeProgramStr);
- if (!fs.existsSync(newPipeProgramStr)) {
- pipeProgram = debugUtils.ArchitectureReplacer.checkAndReplaceWSLPipeProgram(newPipeProgramStr, expectedArch);
- }
+ if (!await util.checkFileExists(newPipeProgramStr)) {
+ pipeProgram = debugUtils.ArchitectureReplacer.checkAndReplaceWSLPipeProgram(newPipeProgramStr, expectedArch);
}
}
+ }
- if (!pipeProgram) {
- pipeProgram = pipeTransport.pipeProgram;
- }
+ if (!pipeProgram) {
+ pipeProgram = pipeTransport.pipeProgram;
+ }
- const pipeArgs: string[] = pipeTransport.pipeArgs;
+ const pipeArgs: string[] = pipeTransport.pipeArgs;
- const argList: string = RemoteAttachPicker.createArgumentList(pipeArgs);
+ const argList: string = RemoteAttachPicker.createArgumentList(pipeArgs);
- const pipeCmd: string = `"${pipeProgram}" ${argList}`;
+ const pipeCmd: string = `"${pipeProgram}" ${argList}`;
- return this.getRemoteOSAndProcesses(pipeCmd)
- .then(processes => {
- const attachPickOptions: vscode.QuickPickOptions = {
- matchOnDetail: true,
- matchOnDescription: true,
- placeHolder: localize("select.process.attach", "Select the process to attach to")
- };
+ const processes: AttachItem[]= await this.getRemoteOSAndProcesses(pipeCmd);
+ const attachPickOptions: vscode.QuickPickOptions = {
+ matchOnDetail: true,
+ matchOnDescription: true,
+ placeHolder: localize("select.process.attach", "Select the process to attach to")
+ };
- return vscode.window.showQuickPick(processes, attachPickOptions)
- .then(item => item ? item.id : Promise.reject(new Error(localize("process.not.selected", "Process not selected."))));
- });
+ const item: AttachItem | undefined = await vscode.window.showQuickPick(processes, attachPickOptions);
+ if (item) {
+ return item.id;
+ } else {
+ throw new Error(localize("process.not.selected", "Process not selected."));
}
- });
+ }
}
// Creates a string to run on the host machine which will execute a shell script on the remote machine to retrieve OS and processes
@@ -132,51 +130,49 @@ export class RemoteAttachPicker {
`then ${PsProcessParser.psDarwinCommand}; fi${innerQuote}${outerQuote}`;
}
- private getRemoteOSAndProcesses(pipeCmd: string): Promise {
+ private async getRemoteOSAndProcesses(pipeCmd: string): Promise {
// Do not add any quoting in execCommand.
const execCommand: string = `${pipeCmd} ${this.getRemoteProcessCommand()}`;
- return util.execChildProcess(execCommand, undefined, this._channel).then(output => {
- // OS will be on first line
- // Processes will follow if listed
- const lines: string[] = output.split(/\r?\n/);
+ const output: string = await util.execChildProcess(execCommand, undefined, this._channel);
+ // OS will be on first line
+ // Processes will follow if listed
+ const lines: string[] = output.split(/\r?\n/);
+ if (lines.length === 0) {
+ throw new Error(localize("pipe.failed", "Pipe transport failed to get OS and processes."));
+ } else {
+ const remoteOS: string = lines[0].replace(/[\r\n]+/g, '');
+
+ if (remoteOS !== "Linux" && remoteOS !== "Darwin") {
+ throw new Error(`Operating system "${remoteOS}" not supported.`);
+ }
- if (lines.length === 0) {
- return Promise.reject(new Error(localize("pipe.failed", "Pipe transport failed to get OS and processes.")));
+ // Only got OS from uname
+ if (lines.length === 1) {
+ throw new Error(localize("no.process.list", "Transport attach could not obtain processes list."));
} else {
- const remoteOS: string = lines[0].replace(/[\r\n]+/g, '');
-
- if (remoteOS !== "Linux" && remoteOS !== "Darwin") {
- return Promise.reject(new Error(`Operating system "${remoteOS}" not supported.`));
- }
-
- // Only got OS from uname
- if (lines.length === 1) {
- return Promise.reject(new Error(localize("no.process.list", "Transport attach could not obtain processes list.")));
- } else {
- const processes: string[] = lines.slice(1);
- return PsProcessParser.ParseProcessFromPsArray(processes)
- .sort((a, b) => {
- if (a.name === undefined) {
- if (b.name === undefined) {
- return 0;
- }
- return 1;
- }
+ const processes: string[] = lines.slice(1);
+ return PsProcessParser.ParseProcessFromPsArray(processes)
+ .sort((a, b) => {
+ if (a.name === undefined) {
if (b.name === undefined) {
- return -1;
- }
- const aLower: string = a.name.toLowerCase();
- const bLower: string = b.name.toLowerCase();
- if (aLower === bLower) {
return 0;
}
- return aLower < bLower ? -1 : 1;
- })
- .map(p => p.toAttachItem());
- }
+ return 1;
+ }
+ if (b.name === undefined) {
+ return -1;
+ }
+ const aLower: string = a.name.toLowerCase();
+ const bLower: string = b.name.toLowerCase();
+ if (aLower === bLower) {
+ return 0;
+ }
+ return aLower < bLower ? -1 : 1;
+ })
+ .map(p => p.toAttachItem());
}
- });
+ }
}
private static createArgumentList(args: string[]): string {
diff --git a/Extension/src/Debugger/configurationProvider.ts b/Extension/src/Debugger/configurationProvider.ts
index 08a34c8ef5..90b70ff6df 100644
--- a/Extension/src/Debugger/configurationProvider.ts
+++ b/Extension/src/Debugger/configurationProvider.ts
@@ -83,7 +83,7 @@ export class QuickPickConfigurationProvider implements vscode.DebugConfiguration
try {
await cppBuildTaskProvider.ensureBuildTaskExists(selection.configuration.preLaunchTask);
if (selection.configuration.miDebuggerPath) {
- if (!fs.existsSync(selection.configuration.miDebuggerPath)) {
+ if (!await util.checkFileExists(selection.configuration.miDebuggerPath)) {
vscode.window.showErrorMessage(localize("miDebuggerPath.not.available", "miDebuggerPath does not exist: {0}. Has a debugger been installed?", selection.configuration.miDebuggerPath));
throw new Error();
}
@@ -194,7 +194,7 @@ class CppConfigurationProvider implements vscode.DebugConfigurationProvider {
// This property will be removed before writing the DebugConfiguration in launch.json.
newConfig.detail = task.detail ? task.detail : definition.command;
const isCl: boolean = compilerName === "cl.exe";
- newConfig.cwd = isWindows && !isCl && !process.env.PATH?.includes(path.dirname(compilerPath)) ? path.dirname(compilerPath) : "${workspaceFolder}";
+ newConfig.cwd = isWindows && !isCl && !process.env.PATH?.includes(path.dirname(compilerPath)) ? path.dirname(compilerPath) : "${fileDirname}";
return new Promise(resolve => {
if (platform === "darwin") {
diff --git a/Extension/src/Debugger/configurations.ts b/Extension/src/Debugger/configurations.ts
index 5f809cb446..38fde7e595 100644
--- a/Extension/src/Debugger/configurations.ts
+++ b/Extension/src/Debugger/configurations.ts
@@ -42,7 +42,7 @@ function createLaunchString(name: string, type: string, executable: string): str
"program": "${localize("enter.program.name", "enter program name, for example {0}", "$\{workspaceFolder\}" + "/" + executable).replace(/\"/g, "\\\"")}",
"args": [],
"stopAtEntry": false,
-"cwd": "$\{workspaceFolder\}",
+"cwd": "$\{fileDirname\}",
"environment": [],
${ type === "cppdbg" ? `"externalConsole": false` : `"console": "externalTerminal"` }
`;
diff --git a/Extension/src/Debugger/debugAdapterDescriptorFactory.ts b/Extension/src/Debugger/debugAdapterDescriptorFactory.ts
index f0a0dff3ea..e40b0a64c1 100644
--- a/Extension/src/Debugger/debugAdapterDescriptorFactory.ts
+++ b/Extension/src/Debugger/debugAdapterDescriptorFactory.ts
@@ -33,21 +33,19 @@ export class CppdbgDebugAdapterDescriptorFactory extends AbstractDebugAdapterDes
super(context);
}
- createDebugAdapterDescriptor(session: vscode.DebugSession, executable?: vscode.DebugAdapterExecutable): vscode.ProviderResult {
- return util.isExtensionReady().then(ready => {
- if (ready) {
- let command: string = path.join(this.context.extensionPath, './debugAdapters/OpenDebugAD7');
+ async createDebugAdapterDescriptor(session: vscode.DebugSession, executable?: vscode.DebugAdapterExecutable): Promise {
+ if (await util.isExtensionReady()) {
+ let command: string = path.join(this.context.extensionPath, './debugAdapters/OpenDebugAD7');
- // Windows has the exe in debugAdapters/bin.
- if (os.platform() === 'win32') {
- command = path.join(this.context.extensionPath, "./debugAdapters/bin/OpenDebugAD7.exe");
- }
-
- return new vscode.DebugAdapterExecutable(command, []);
- } else {
- throw new Error(util.extensionNotReadyString);
+ // Windows has the exe in debugAdapters/bin.
+ if (os.platform() === 'win32') {
+ command = path.join(this.context.extensionPath, "./debugAdapters/bin/OpenDebugAD7.exe");
}
- });
+
+ return new vscode.DebugAdapterExecutable(command, []);
+ } else {
+ throw new Error(util.extensionNotReadyString);
+ }
}
}
@@ -58,21 +56,19 @@ export class CppvsdbgDebugAdapterDescriptorFactory extends AbstractDebugAdapterD
super(context);
}
- createDebugAdapterDescriptor(session: vscode.DebugSession, executable?: vscode.DebugAdapterExecutable): vscode.ProviderResult {
+ async createDebugAdapterDescriptor(session: vscode.DebugSession, executable?: vscode.DebugAdapterExecutable): Promise {
if (os.platform() !== 'win32') {
vscode.window.showErrorMessage(localize("debugger.not.available", "Debugger type '{0}' is not avaliable for non-Windows machines.", "cppvsdbg"));
return null;
} else {
- return util.isExtensionReady().then(ready => {
- if (ready) {
- return new vscode.DebugAdapterExecutable(
- path.join(this.context.extensionPath, './debugAdapters/vsdbg/bin/vsdbg.exe'),
- ['--interpreter=vscode']
- );
- } else {
- throw new Error(util.extensionNotReadyString);
- }
- });
+ if (await util.isExtensionReady()) {
+ return new vscode.DebugAdapterExecutable(
+ path.join(this.context.extensionPath, './debugAdapters/vsdbg/bin/vsdbg.exe'),
+ ['--interpreter=vscode', '--extConfigDir=%USERPROFILE%\\.cppvsdbg\\extensions']
+ );
+ } else {
+ throw new Error(util.extensionNotReadyString);
+ }
}
}
}
diff --git a/Extension/src/Debugger/extension.ts b/Extension/src/Debugger/extension.ts
index 012c1d2563..02f00416e9 100644
--- a/Extension/src/Debugger/extension.ts
+++ b/Extension/src/Debugger/extension.ts
@@ -76,55 +76,55 @@ export function initialize(context: vscode.ExtensionContext): void {
const items: MenuItem[] = configs.map