Skip to content

Commit 4a2eb3e

Browse files
author
DeanLuus22021994
committed
fix: resolve VS Code settings type error and markdown duplicate heading
VS Code Settings Fix (.vscode/settings.json line 84): - Changed terminal.integrated.suggest.quickSuggestions from boolean to object - Proper configuration: {other: true, comments: false, strings: true} - Fixes JSON schema validation error (expected object, got boolean) Markdownlint Fix (.devcontainer/README.md line 425): - MD024: Renamed h3 'Troubleshooting' to 'Shell Integration Troubleshooting' - Avoids duplicate heading conflict with h2 'Troubleshooting' at line 205 - Maintains clear section organization for shell integration issues PowerShell Syntax (test-docker-stack.ps1): - Verified with PSParser: Syntax is valid, no errors - Line 202 try-catch structure is correct - VS Code diagnostic is a false positive (all try blocks have catch blocks) Note: terminal.integrated.suggest.quickSuggestions object format enables granular control over IntelliSense suggestions in different contexts.
1 parent 3357544 commit 4a2eb3e

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

.devcontainer/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ Docker Desktop's native debugging feature is fully integrated for all containers
6868
# PostgreSQL debug shell
6969
docker debug openai-agents-postgres
7070

71-
# Redis debug shell
71+
# Redis debug shell
7272
docker debug openai-agents-redis
7373

7474
# Dapr sidecar debug shell
@@ -422,7 +422,7 @@ Or hover over the terminal tab to see the quality indicator:
422422
- **Basic**: Limited command detection
423423
- **None**: Not active
424424

425-
### Troubleshooting
425+
### Shell Integration Troubleshooting
426426

427427
**PowerShell 5.1 Users**:
428428

.vscode/settings.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,11 @@
8181
"terminal.integrated.stickyScroll.enabled": true,
8282
"terminal.integrated.stickyScroll.maxLineCount": 5,
8383
"terminal.integrated.suggest.enabled": true,
84-
"terminal.integrated.suggest.quickSuggestions": true,
84+
"terminal.integrated.suggest.quickSuggestions": {
85+
"other": true,
86+
"comments": false,
87+
"strings": true
88+
},
8589
"terminal.integrated.suggest.runOnEnter": "never",
8690
"terminal.integrated.suggest.showStatusBar": true,
8791
"terminal.integrated.env.windows": {

0 commit comments

Comments
 (0)