Skip to content

Commit c879eb9

Browse files
AtkinsSJgmta
authored andcommitted
quickLinks: Update editor documentation URLs
1 parent 97ad614 commit c879eb9

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

src/commands/quickLinksCommand.ts

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ import Command from "./command";
1111
export class QuickLinksCommand extends Command {
1212
private readonly documentation: string =
1313
"https://github.com/LadybirdBrowser/ladybird/tree/master/Documentation";
14+
private readonly editors: string = `${this.documentation}/EditorConfiguration`;
1415

1516
readonly links: { help: string; response: string; name: string }[] = [
1617
{
@@ -26,12 +27,12 @@ export class QuickLinksCommand extends Command {
2627
},
2728
{
2829
name: "clion",
29-
response: `Configuring the CLion IDE: <${this.documentation}/CLionConfiguration.md>`,
30+
response: `Configuring the CLion IDE: <${this.editors}/CLionConfiguration.md>`,
3031
help: "Get a link to the directions for configuring the CLion IDE",
3132
},
3233
{
3334
name: "emacs",
34-
response: `Configuring Emacs: <${this.documentation}/EmacsConfiguration.md>`,
35+
response: `Configuring Emacs: <${this.editors}/EmacsConfiguration.md>`,
3536
help: "Get a link to the directions for configuring Emacs",
3637
},
3738
{
@@ -41,22 +42,22 @@ export class QuickLinksCommand extends Command {
4142
},
4243
{
4344
name: "vscode",
44-
response: `Configuring the Visual Studio Code IDE: <${this.documentation}/VSCodeConfiguration.md>`,
45+
response: `Configuring the Visual Studio Code IDE: <${this.editors}/VSCodeConfiguration.md>`,
4546
help: "Get a link to the directions for configuring the Visual Studio Code IDE",
4647
},
4748
{
4849
name: "helix",
49-
response: `Configuring Helix: <${this.documentation}/HelixConfiguration.md>`,
50+
response: `Configuring Helix: <${this.editors}/HelixConfiguration.md>`,
5051
help: "Get a link to the directions for configuring Helix",
5152
},
5253
{
5354
name: "nvim",
54-
response: `Configuring Neo Vim: <${this.documentation}/NvimConfiguration.md>`,
55+
response: `Configuring Neo Vim: <${this.editors}/NvimConfiguration.md>`,
5556
help: "Get a link to the directions for configuring Neo Vim",
5657
},
5758
{
5859
name: "vim",
59-
response: `Configuring Vim: <${this.documentation}/NvimConfiguration.md>`,
60+
response: `Configuring Vim: <${this.editors}/NvimConfiguration.md>`,
6061
help: "Get a link to the directions for configuring Vim",
6162
},
6263
{

0 commit comments

Comments
 (0)