Skip to content

Commit 23b1acb

Browse files
committed
deps: upgrade @vim-fall/std to 0.8.0
1 parent 16b89d8 commit 23b1acb

File tree

8 files changed

+11
-11
lines changed

8 files changed

+11
-11
lines changed

denops/fall/_assets/default.custom.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ import {
33
composeRenderers,
44
refineCurator,
55
refineSource,
6-
} from "jsr:@vim-fall/std@^0.7.4";
7-
import * as builtin from "jsr:@vim-fall/std@^0.7.4/builtin";
6+
} from "jsr:@vim-fall/std@^0.8.0";
7+
import * as builtin from "jsr:@vim-fall/std@^0.8.0/builtin";
88
import { SEPARATOR } from "jsr:@std/path@^1.0.8/constants";
99

1010
// NOTE:

denops/fall/_assets/minimum.custom.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import type { Entrypoint } from "jsr:@vim-fall/custom@^0.1.0";
2-
import * as builtin from "jsr:@vim-fall/std@^0.7.0/builtin";
2+
import * as builtin from "jsr:@vim-fall/std@^0.8.0/builtin";
33

44
export const main: Entrypoint = ({
55
definePickerFromSource,

denops/fall/custom.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ import {
2222
type PickerParams,
2323
} from "jsr:@vim-fall/custom@^0.1.0/picker";
2424

25-
import { modern } from "jsr:@vim-fall/std@^0.7.0/builtin/coordinator/modern";
26-
import { MODERN_THEME } from "jsr:@vim-fall/std@^0.7.0/builtin/theme/modern";
27-
import { fzf } from "jsr:@vim-fall/std@^0.7.0/builtin/matcher/fzf";
25+
import { modern } from "jsr:@vim-fall/std@^0.8.0/builtin/coordinator/modern";
26+
import { MODERN_THEME } from "jsr:@vim-fall/std@^0.8.0/builtin/theme/modern";
27+
import { fzf } from "jsr:@vim-fall/std@^0.8.0/builtin/matcher/fzf";
2828

2929
const defaultCustomUrl = new URL(
3030
"./_assets/default.custom.ts",

denops/fall/processor/collect_test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { DenopsStub } from "jsr:@denops/test@^3.0.4";
55
import { Notify } from "jsr:@core/asyncutil@^1.2.0";
66
import { flushPromises } from "jsr:@core/asyncutil@^1.2.0";
77
import type { Source } from "jsr:@vim-fall/core@^0.2.1";
8-
import { defineSource } from "jsr:@vim-fall/std@^0.7.0";
8+
import { defineSource } from "jsr:@vim-fall/std@^0.8.0";
99

1010
import { dispose } from "../lib/dispose.ts";
1111
import { CollectProcessor } from "./collect.ts";

denops/fall/processor/match_test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import {
99
type IdItem,
1010
type Matcher,
1111
} from "jsr:@vim-fall/core@^0.2.1";
12-
import { defineMatcher } from "jsr:@vim-fall/std@^0.7.0";
12+
import { defineMatcher } from "jsr:@vim-fall/std@^0.8.0";
1313

1414
import { dispose } from "../lib/dispose.ts";
1515
import { MatchProcessor } from "./match.ts";

denops/fall/processor/preview_test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import {
99
type IdItem,
1010
type Previewer,
1111
} from "jsr:@vim-fall/core@^0.2.1";
12-
import { definePreviewer } from "jsr:@vim-fall/std@^0.7.0";
12+
import { definePreviewer } from "jsr:@vim-fall/std@^0.8.0";
1313

1414
import { dispose } from "../lib/dispose.ts";
1515
import { PreviewProcessor } from "./preview.ts";

denops/fall/processor/render_test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import {
99
type DisplayItem,
1010
type Renderer,
1111
} from "jsr:@vim-fall/core@^0.2.1";
12-
import { defineRenderer } from "jsr:@vim-fall/std@^0.7.0";
12+
import { defineRenderer } from "jsr:@vim-fall/std@^0.8.0";
1313

1414
import { dispose } from "../lib/dispose.ts";
1515
import { RenderProcessor } from "./render.ts";

denops/fall/processor/sort_test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import {
99
type IdItem,
1010
type Sorter,
1111
} from "jsr:@vim-fall/core@^0.2.1";
12-
import { defineSorter } from "jsr:@vim-fall/std@^0.7.0";
12+
import { defineSorter } from "jsr:@vim-fall/std@^0.8.0";
1313

1414
import { dispose } from "../lib/dispose.ts";
1515
import { SortProcessor } from "./sort.ts";

0 commit comments

Comments
 (0)