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

AiderTest command #14

Merged
merged 5 commits into from
Sep 26, 2024
Merged
Changes from 1 commit
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
36 changes: 29 additions & 7 deletions denops/aider/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,10 @@ export async function main(denops: Denops): Promise<void> {
type ArgCount = "0" | "1" | "*";
type ImplType<T extends ArgCount> = T extends "0" ? (() => Promise<void>)
: T extends "1" ? ((arg: string) => Promise<void>)
: ((arg: string, arg2: string) => Promise<void>); // MEMO: 1つめの引数、2つめの引数という意味
: ((arg: string, arg2: string) => Promise<void>); // MEMO: 1つめの引数、2つめの引数という意味 ArgCountは*だが現状2つのみ対応している
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👍

type CompleteType<T extends ArgCount> = T extends "1"
? "file" | "shellcmd" | ""
: "";

type Command = {
methodName: string;
Expand All @@ -34,13 +37,15 @@ export async function main(denops: Denops): Promise<void> {
impl: ImplType<argCount>,
pattern: "[<f-args>]" | "[<line1>, <line2>]" | "[]" = "[]",
range: boolean = false,
complete: CompleteType<argCount> = "",
): Promise<Command> {
const rangePart = range ? "-range " : "";

const commandName = "Aider" + dispatcherMethod.charAt(0).toUpperCase() +
dispatcherMethod.slice(1);
const completePart = complete ? "" : `-complete=${complete}`;
await denops.cmd(
`command! -nargs=${argCount} ${rangePart} ${commandName} call denops#notify("${denops.name}", "${dispatcherMethod}", ${pattern})`,
`command! -nargs=${argCount} ${completePart} ${rangePart} ${commandName} call denops#notify("${denops.name}", "${dispatcherMethod}", ${pattern})`,
);
return {
methodName: dispatcherMethod,
Expand Down Expand Up @@ -84,11 +89,18 @@ export async function main(denops: Denops): Promise<void> {
"sendPromptWithInput",
() => buffer.sendPromptWithInput(denops),
),
await command("addFile", "1", async (path: string) => {
const prompt = `/add ${path}`;
await v.r.set(denops, "q", prompt);
await denops.dispatcher.sendPromptWithInput(path);
}, "[<f-args>]"),
await command(
"addFile",
"1",
async (path: string) => {
const prompt = `/add ${path}`;
await v.r.set(denops, "q", prompt);
await denops.dispatcher.sendPromptWithInput(path);
},
"[<f-args>]",
false,
"file",
),
await command(
"addCurrentFile",
"0",
Expand Down Expand Up @@ -130,6 +142,16 @@ export async function main(denops: Denops): Promise<void> {
await denops.cmd("close!");
await denops.cmd(`silent! e!`);
}),
await command(
"test",
"1",
async () => {
await aiderCommand.simpleCommand(denops, "/test");
},
"[<f-args>]",
false,
"shellcmd",
Copy link
Collaborator Author

@tsukimizake tsukimizake Sep 26, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

optionalな引数がだいぶ増えてしまったので1つのopts的なオブジェクト引数にまとめるやつを次やるとおもわれます

Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

オッスオッス

),
];

denops.dispatcher = Object.fromEntries(commands.map((command) => [
Expand Down