diff --git a/.github/workflows/deno-test.yml b/.github/workflows/deno-test.yml index 5c6d55f..3388055 100644 --- a/.github/workflows/deno-test.yml +++ b/.github/workflows/deno-test.yml @@ -7,14 +7,14 @@ on: branches: - main paths: - - '**.ts' - - '.github/workflows/deno-test.yml' - - 'deno.jsonc' + - "**.ts" + - ".github/workflows/deno-test.yml" + - "deno.jsonc" pull_request: branches: - main paths: - - '**.ts' + - "**.ts" permissions: contents: read diff --git a/denops/@ddu-kinds/git_commit.ts b/denops/@ddu-kinds/git_commit.ts index 657d04f..7523fe6 100644 --- a/denops/@ddu-kinds/git_commit.ts +++ b/denops/@ddu-kinds/git_commit.ts @@ -3,17 +3,17 @@ import { type Actions, type DduItem, type Previewer, -} from "jsr:@shougo/ddu-vim@~6.1.0/types"; +} from "jsr:@shougo/ddu-vim@~6.2.0/types"; import { BaseKind, type GetPreviewerArguments, -} from "jsr:@shougo/ddu-vim@~6.1.0/kind"; +} from "jsr:@shougo/ddu-vim@~6.2.0/kind"; import { echoallCommand } from "jsr:@kyoh86/denops-util@~0.1.0/command"; import { yank } from "jsr:@kyoh86/denops-util@~0.1.0/yank"; import { put } from "jsr:@kyoh86/denops-util@~0.1.0/put"; import { ensure, is } from "jsr:@core/unknownutil@~4.3.0"; -import type { Denops } from "jsr:@denops/std@~7.1.0"; -import * as fn from "jsr:@denops/std@~7.1.0/function"; +import type { Denops } from "jsr:@denops/std@~7.3.0"; +import * as fn from "jsr:@denops/std@~7.3.0/function"; export type ActionData = { kind: "commit"; @@ -144,7 +144,9 @@ export const GitLogActions: Actions = { export class Kind extends BaseKind { actions = GitLogActions; - getPreviewer(args: GetPreviewerArguments): Promise { + override getPreviewer( + args: GetPreviewerArguments, + ): Promise { const action = args.item.action as ActionData; if (action.kind == "graph") { return Promise.resolve({ diff --git a/denops/@ddu-sources/git_log.ts b/denops/@ddu-sources/git_log.ts index 0099930..d4fee38 100644 --- a/denops/@ddu-sources/git_log.ts +++ b/denops/@ddu-sources/git_log.ts @@ -1,8 +1,8 @@ -import type { GatherArguments } from "jsr:@shougo/ddu-vim@~6.1.0/source"; -import * as fn from "jsr:@denops/std@~7.1.0/function"; -import { treePath2Filename } from "jsr:@shougo/ddu-vim@~6.1.0/utils"; -import type { Item } from "jsr:@shougo/ddu-vim@~6.1.0/types"; -import { BaseSource } from "jsr:@shougo/ddu-vim@~6.1.0/source"; +import type { GatherArguments } from "jsr:@shougo/ddu-vim@~6.2.0/source"; +import * as fn from "jsr:@denops/std@~7.3.0/function"; +import { treePath2Filename } from "jsr:@shougo/ddu-vim@~6.2.0/utils"; +import type { Item } from "jsr:@shougo/ddu-vim@~6.2.0/types"; +import { BaseSource } from "jsr:@shougo/ddu-vim@~6.2.0/source"; import { TextLineStream } from "jsr:@std/streams@~1.0.0"; import { ChunkedStream } from "jsr:@hibiki/chunked-stream@~0.1.4";