From 76f0e3833cde9127a338b402e43345c22515496d Mon Sep 17 00:00:00 2001 From: jogo- Date: Sat, 12 Jan 2019 11:32:52 +0100 Subject: [PATCH 1/2] Fix typos in launch.md --- launch.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/launch.md b/launch.md index 463722044..5cb4a5cab 100644 --- a/launch.md +++ b/launch.md @@ -27,7 +27,7 @@ Set or change the following options to control VS Code's behavior during debuggi macOS: When set to true, it will spawn an external console through `lldb-mi`. When set to false, the output can be seen in VS Code's debugConsole. Due to limitations within `lldb-mi`, integratedTerminal support is not available. * #### `avoidWindowsConsoleRedirection` - In order to support VSCode's Integrated terminal with gdb on Windows, the extension adds console redirection commands to the debuggee's arguments to have console input and output show up in the integrated terminal. Setting this option to `true` will disable it. + In order to support VSCode's Integrated terminal with gdb on Windows, the extension adds console redirection commands to the debugger's arguments to have console input and output show up in the integrated terminal. Setting this option to `true` will disable it. * #### `logging` Optional flags to determine what types of messages should be logged to the Debug Console. @@ -78,7 +78,7 @@ The following options enable you to modify the state of the target application w JSON array of command line arguments to pass to the program when it is launched. Example `["arg1", "arg2"]`. If you are escaping characters you will need to double escape them. For example `["{\\\"arg\\\": true}]` will send `{"arg1": true}` to your application. * #### `cwd` - Sets the the working directory of the application launched by the debugger. + Sets the working directory of the application launched by the debugger. * #### `environment` Environment variables to add to the environment for the program. Example: `[ { "name": "squid", "value": "clam" } ]`. @@ -169,7 +169,7 @@ _Note: core dump debugging is not supported with MinGw._ Full path to debug server to launch. * #### `debugServerArgs` - Arguments for the the debugger server. + Arguments for the debugger server. * #### `serverStarted` Server-started pattern to look for in the debug server output. From 70dca7d6f07d1eb836bb387ffb36be5dfd912023 Mon Sep 17 00:00:00 2001 From: jogo- Date: Wed, 16 Jan 2019 17:27:17 +0100 Subject: [PATCH 2/2] Update launch.md --- launch.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/launch.md b/launch.md index 5cb4a5cab..bbdf08e07 100644 --- a/launch.md +++ b/launch.md @@ -27,7 +27,7 @@ Set or change the following options to control VS Code's behavior during debuggi macOS: When set to true, it will spawn an external console through `lldb-mi`. When set to false, the output can be seen in VS Code's debugConsole. Due to limitations within `lldb-mi`, integratedTerminal support is not available. * #### `avoidWindowsConsoleRedirection` - In order to support VSCode's Integrated terminal with gdb on Windows, the extension adds console redirection commands to the debugger's arguments to have console input and output show up in the integrated terminal. Setting this option to `true` will disable it. + In order to support VSCode's Integrated terminal with gdb on Windows, the extension adds console redirection commands to the debuggee's arguments to have console input and output show up in the integrated terminal. Setting this option to `true` will disable it. * #### `logging` Optional flags to determine what types of messages should be logged to the Debug Console.