@@ -11,6 +11,7 @@ import Command from "./command";
11
11
export class QuickLinksCommand extends Command {
12
12
private readonly documentation : string =
13
13
"https://github.com/LadybirdBrowser/ladybird/tree/master/Documentation" ;
14
+ private readonly editors : string = `${ this . documentation } /EditorConfiguration` ;
14
15
15
16
readonly links : { help : string ; response : string ; name : string } [ ] = [
16
17
{
@@ -26,12 +27,12 @@ export class QuickLinksCommand extends Command {
26
27
} ,
27
28
{
28
29
name : "clion" ,
29
- response : `Configuring the CLion IDE: <${ this . documentation } /CLionConfiguration.md>` ,
30
+ response : `Configuring the CLion IDE: <${ this . editors } /CLionConfiguration.md>` ,
30
31
help : "Get a link to the directions for configuring the CLion IDE" ,
31
32
} ,
32
33
{
33
34
name : "emacs" ,
34
- response : `Configuring Emacs: <${ this . documentation } /EmacsConfiguration.md>` ,
35
+ response : `Configuring Emacs: <${ this . editors } /EmacsConfiguration.md>` ,
35
36
help : "Get a link to the directions for configuring Emacs" ,
36
37
} ,
37
38
{
@@ -41,22 +42,22 @@ export class QuickLinksCommand extends Command {
41
42
} ,
42
43
{
43
44
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>` ,
45
46
help : "Get a link to the directions for configuring the Visual Studio Code IDE" ,
46
47
} ,
47
48
{
48
49
name : "helix" ,
49
- response : `Configuring Helix: <${ this . documentation } /HelixConfiguration.md>` ,
50
+ response : `Configuring Helix: <${ this . editors } /HelixConfiguration.md>` ,
50
51
help : "Get a link to the directions for configuring Helix" ,
51
52
} ,
52
53
{
53
54
name : "nvim" ,
54
- response : `Configuring Neo Vim: <${ this . documentation } /NvimConfiguration.md>` ,
55
+ response : `Configuring Neo Vim: <${ this . editors } /NvimConfiguration.md>` ,
55
56
help : "Get a link to the directions for configuring Neo Vim" ,
56
57
} ,
57
58
{
58
59
name : "vim" ,
59
- response : `Configuring Vim: <${ this . documentation } /NvimConfiguration.md>` ,
60
+ response : `Configuring Vim: <${ this . editors } /NvimConfiguration.md>` ,
60
61
help : "Get a link to the directions for configuring Vim" ,
61
62
} ,
62
63
{
0 commit comments