Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix editor links plus other stuff #25

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 13 additions & 12 deletions src/commands/quickLinksCommand.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ import Command from "./command";
export class QuickLinksCommand extends Command {
private readonly documentation: string =
"https://github.com/LadybirdBrowser/ladybird/tree/master/Documentation";
private readonly editors: string = `${this.documentation}/EditorConfiguration`;

readonly links: { help: string; response: string; name: string }[] = [
{
Expand All @@ -26,12 +27,12 @@ export class QuickLinksCommand extends Command {
},
{
name: "clion",
response: `Configuring the CLion IDE: <${this.documentation}/CLionConfiguration.md>`,
response: `Configuring the CLion IDE: <${this.editors}/CLionConfiguration.md>`,
help: "Get a link to the directions for configuring the CLion IDE",
},
{
name: "emacs",
response: `Configuring Emacs: <${this.documentation}/EmacsConfiguration.md>`,
response: `Configuring Emacs: <${this.editors}/EmacsConfiguration.md>`,
help: "Get a link to the directions for configuring Emacs",
},
{
Expand All @@ -41,22 +42,22 @@ export class QuickLinksCommand extends Command {
},
{
name: "vscode",
response: `Configuring the Visual Studio Code IDE: <${this.documentation}/VSCodeConfiguration.md>`,
response: `Configuring the Visual Studio Code IDE: <${this.editors}/VSCodeConfiguration.md>`,
help: "Get a link to the directions for configuring the Visual Studio Code IDE",
},
{
name: "helix",
response: `Configuring Helix: <${this.documentation}/HelixConfiguration.md>`,
response: `Configuring Helix: <${this.editors}/HelixConfiguration.md>`,
help: "Get a link to the directions for configuring Helix",
},
{
name: "nvim",
response: `Configuring Neo Vim: <${this.documentation}/NvimConfiguration.md>`,
response: `Configuring Neo Vim: <${this.editors}/NvimConfiguration.md>`,
help: "Get a link to the directions for configuring Neo Vim",
},
{
name: "vim",
response: `Configuring Vim: <${this.documentation}/NvimConfiguration.md>`,
response: `Configuring Vim: <${this.editors}/NvimConfiguration.md>`,
help: "Get a link to the directions for configuring Vim",
},
{
Expand All @@ -69,18 +70,18 @@ export class QuickLinksCommand extends Command {
response: "https://youtu.be/ElRzTuYln0M",
help: "Get a link to a video explaining how to rewrite git history",
},
{
name: "soytineres",
response:
"https://cdn.discordapp.com/attachments/830525235803586570/843838343905411142/IMG_20210517_170429.png",
help: "!SOytinereS",
},
{
name: "whf",
response:
"WHF is short for 'Well hello friends', the greeting used by Andreas in his coding videos",
help: "Explains the meaning of 'whf'",
},
{
name: "wpt",
response: `Charts comparing our score to other browsers, over time: <https://linegoup.lol>
Our latest WPT results: <https://wpt.fyi/results/?product=ladybird>`,
help: "Get links our Web Platform Test results",
},
];

override data() {
Expand Down
Loading