From 6bd54c498f9eb7cc1667c5588d827c2e7bf29583 Mon Sep 17 00:00:00 2001 From: xtqqczze <45661989+xtqqczze@users.noreply.github.com> Date: Fri, 5 Sep 2025 15:02:23 +0100 Subject: [PATCH 1/4] Update documentation links from docs.microsoft.com to learn.microsoft.com --- .editorconfig | 2 +- ReadMe.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.editorconfig b/.editorconfig index d0459a0..32b91d3 100644 --- a/.editorconfig +++ b/.editorconfig @@ -1,4 +1,4 @@ -# You can learn more about editorconfig here: https://docs.microsoft.com/en-us/visualstudio/ide/editorconfig-code-style-settings-reference +# You can learn more about editorconfig here: https://learn.microsoft.com/en-us/visualstudio/ide/editorconfig-code-style-settings-reference [*] #Core editorconfig formatting - indentation diff --git a/ReadMe.md b/ReadMe.md index 6b7b563..d66805d 100644 --- a/ReadMe.md +++ b/ReadMe.md @@ -55,7 +55,7 @@ course. But in my opinion they are not meeting people's needs. the larger problem. (for instance, two major shortcomings are: they are still too low-level (you have to deal with the dbgeng COM API), and there's no REPL) * The debugger team has recently introduce [Javascript - scripting](https://docs.microsoft.com/en-us/windows-hardware/drivers/debugger/javascript-debugger-scripting). + scripting](https://learn.microsoft.com/en-us/windows-hardware/drivers/debugger/javascript-debugger-scripting). Javascript is a much better (and more well-defined) language than the old windbg scripting language, but I think that PowerShell has some advantages, the largest of which is that nobody really uses a Javascript shell--PowerShell is much better as a From 9d71406616e9d782812962a5de4389878f6c9970 Mon Sep 17 00:00:00 2001 From: xtqqczze <45661989+xtqqczze@users.noreply.github.com> Date: Fri, 5 Sep 2025 15:12:35 +0100 Subject: [PATCH 2/4] Canonicalize * follow redirects * Remove en-us --- .editorconfig | 2 +- ReadMe.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.editorconfig b/.editorconfig index 32b91d3..d6448d1 100644 --- a/.editorconfig +++ b/.editorconfig @@ -1,4 +1,4 @@ -# You can learn more about editorconfig here: https://learn.microsoft.com/en-us/visualstudio/ide/editorconfig-code-style-settings-reference +# You can learn more about editorconfig here: https://learn.microsoft.com/dotnet/fundamentals/code-analysis/code-style-rule-options [*] #Core editorconfig formatting - indentation diff --git a/ReadMe.md b/ReadMe.md index d66805d..99e851d 100644 --- a/ReadMe.md +++ b/ReadMe.md @@ -55,7 +55,7 @@ course. But in my opinion they are not meeting people's needs. the larger problem. (for instance, two major shortcomings are: they are still too low-level (you have to deal with the dbgeng COM API), and there's no REPL) * The debugger team has recently introduce [Javascript - scripting](https://learn.microsoft.com/en-us/windows-hardware/drivers/debugger/javascript-debugger-scripting). + scripting](https://learn.microsoft.com/windows-hardware/drivers/debugger/javascript-debugger-scripting). Javascript is a much better (and more well-defined) language than the old windbg scripting language, but I think that PowerShell has some advantages, the largest of which is that nobody really uses a Javascript shell--PowerShell is much better as a From 389291f67535961510127c3fdca9da53e45138b1 Mon Sep 17 00:00:00 2001 From: xtqqczze <45661989+xtqqczze@users.noreply.github.com> Date: Tue, 9 Sep 2025 11:23:38 +0100 Subject: [PATCH 3/4] Update `.editorconfig` --- .editorconfig | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.editorconfig b/.editorconfig index d6448d1..67b59cf 100644 --- a/.editorconfig +++ b/.editorconfig @@ -1,4 +1,5 @@ -# You can learn more about editorconfig here: https://learn.microsoft.com/dotnet/fundamentals/code-analysis/code-style-rule-options +# editorconfig.org + [*] #Core editorconfig formatting - indentation @@ -10,6 +11,7 @@ align_multiline_parameter = true align_multiline_argument = true [*.cs] +# https://learn.microsoft.com/dotnet/fundamentals/code-analysis/code-style-rule-options #Formatting - indentation options From 759232c92c9573b5c225414fe4901d06f826ed56 Mon Sep 17 00:00:00 2001 From: xtqqczze <45661989+xtqqczze@users.noreply.github.com> Date: Tue, 9 Sep 2025 11:25:08 +0100 Subject: [PATCH 4/4] Update link title to match target --- ReadMe.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/ReadMe.md b/ReadMe.md index 99e851d..b346ee3 100644 --- a/ReadMe.md +++ b/ReadMe.md @@ -54,8 +54,7 @@ course. But in my opinion they are not meeting people's needs. stop-gap addressing the pain of developing a debugger extension; they don't really solve the larger problem. (for instance, two major shortcomings are: they are still too low-level (you have to deal with the dbgeng COM API), and there's no REPL) -* The debugger team has recently introduce [Javascript - scripting](https://learn.microsoft.com/windows-hardware/drivers/debugger/javascript-debugger-scripting). +* The debugger team has recently introduce [JavaScript Debugger Scripting](https://learn.microsoft.com/windows-hardware/drivers/debugger/javascript-debugger-scripting). Javascript is a much better (and more well-defined) language than the old windbg scripting language, but I think that PowerShell has some advantages, the largest of which is that nobody really uses a Javascript shell--PowerShell is much better as a