-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #20 from yukimemi/molt-action
- Loading branch information
Showing
7 changed files
with
23 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,8 +4,8 @@ | |
// Last Change : 2024/11/02 23:41:19. | ||
// ============================================================================= | ||
|
||
import * as fn from "jsr:@denops/[email protected].0/function"; | ||
import type { Denops } from "jsr:@denops/[email protected].0"; | ||
import * as fn from "jsr:@denops/[email protected].1/function"; | ||
import type { Denops } from "jsr:@denops/[email protected].1"; | ||
import { DEFAULT_MODEL, GIT_COMMIT_PROMPT } from "../consts.ts"; | ||
import { Futago } from "../futago.ts"; | ||
import { GenerationConfigSchema } from "../schema/generation_config.ts"; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,10 +4,10 @@ | |
// Last Change : 2024/11/04 01:16:38. | ||
// ============================================================================= | ||
|
||
import * as batch from "jsr:@denops/[email protected].0/batch"; | ||
import * as buffer from "jsr:@denops/[email protected].0/buffer"; | ||
import * as fn from "jsr:@denops/[email protected].0/function"; | ||
import type { Denops } from "jsr:@denops/[email protected].0"; | ||
import * as batch from "jsr:@denops/[email protected].1/batch"; | ||
import * as buffer from "jsr:@denops/[email protected].1/buffer"; | ||
import * as fn from "jsr:@denops/[email protected].1/function"; | ||
import type { Denops } from "jsr:@denops/[email protected].1"; | ||
import { Futago } from "../futago.ts"; | ||
import { basename, extname } from "jsr:@std/[email protected]"; | ||
import { getDb } from "../db.ts"; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,9 +4,9 @@ | |
// Last Change : 2024/11/02 19:07:09. | ||
// ============================================================================= | ||
|
||
import * as batch from "jsr:@denops/[email protected].0/batch"; | ||
import * as fn from "jsr:@denops/[email protected].0/function"; | ||
import type { Denops } from "jsr:@denops/[email protected].0"; | ||
import * as batch from "jsr:@denops/[email protected].1/batch"; | ||
import * as fn from "jsr:@denops/[email protected].1/function"; | ||
import type { Denops } from "jsr:@denops/[email protected].1"; | ||
import { walk } from "jsr:@std/[email protected]"; | ||
import { z } from "npm:[email protected]"; | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,11 +4,11 @@ | |
// Last Change : 2024/11/04 01:26:48. | ||
// ============================================================================= | ||
|
||
import * as fn from "jsr:@denops/[email protected].0/function"; | ||
import * as option from "jsr:@denops/[email protected].0/option"; | ||
import * as fn from "jsr:@denops/[email protected].1/function"; | ||
import * as option from "jsr:@denops/[email protected].1/option"; | ||
import { Futago } from "../futago.ts"; | ||
import { getNow } from "../util.ts"; | ||
import type { Denops } from "jsr:@denops/[email protected].0"; | ||
import type { Denops } from "jsr:@denops/[email protected].1"; | ||
import { z } from "npm:[email protected]"; | ||
import { Semaphore } from "jsr:@lambdalisue/[email protected]"; | ||
import { SEPARATOR } from "../consts.ts"; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,10 +4,10 @@ | |
// Last Change : 2024/11/02 19:37:06. | ||
// ============================================================================= | ||
|
||
import * as batch from "jsr:@denops/[email protected].0/batch"; | ||
import * as buffer from "jsr:@denops/[email protected].0/buffer"; | ||
import * as fn from "jsr:@denops/[email protected].0/function"; | ||
import type { Denops } from "jsr:@denops/[email protected].0"; | ||
import * as batch from "jsr:@denops/[email protected].1/batch"; | ||
import * as buffer from "jsr:@denops/[email protected].1/buffer"; | ||
import * as fn from "jsr:@denops/[email protected].1/function"; | ||
import type { Denops } from "jsr:@denops/[email protected].1"; | ||
import { DEFAULT_AI_PROMPT, DEFAULT_HUMAN_PROMPT, DEFAULT_MODEL, SEPARATOR } from "../consts.ts"; | ||
import { Futago } from "../futago.ts"; | ||
import { GenerationConfigSchema } from "../schema/generation_config.ts"; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,12 +4,12 @@ | |
// Last Change : 2024/11/04 01:00:16. | ||
// ============================================================================= | ||
|
||
import * as fn from "jsr:@denops/[email protected].0/function"; | ||
import * as helper from "jsr:@denops/[email protected].0/helper"; | ||
import * as autocmd from "jsr:@denops/[email protected].0/autocmd"; | ||
import * as vars from "jsr:@denops/[email protected].0/variable"; | ||
import * as fn from "jsr:@denops/[email protected].1/function"; | ||
import * as helper from "jsr:@denops/[email protected].1/helper"; | ||
import * as autocmd from "jsr:@denops/[email protected].1/autocmd"; | ||
import * as vars from "jsr:@denops/[email protected].1/variable"; | ||
import { deepMerge } from "jsr:@std/[email protected]"; | ||
import type { Denops } from "jsr:@denops/[email protected].0"; | ||
import type { Denops } from "jsr:@denops/[email protected].1"; | ||
import { dir } from "jsr:@cross/[email protected]"; | ||
import { ensureDir, ensureFile } from "jsr:@std/[email protected]"; | ||
import { dirname, join } from "jsr:@std/[email protected]"; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,8 +5,8 @@ | |
// ============================================================================= | ||
|
||
import * as datetime from "jsr:@std/[email protected]"; | ||
import * as fn from "jsr:@denops/[email protected].0/function"; | ||
import type { Denops } from "jsr:@denops/[email protected].0"; | ||
import * as fn from "jsr:@denops/[email protected].1/function"; | ||
import type { Denops } from "jsr:@denops/[email protected].1"; | ||
|
||
export function getNow(): string { | ||
return datetime.format(new Date(), "yyyy-MM-ddTHH-mm-ss.SSS"); | ||
|