Skip to content

Commit e16c00d

Browse files
committed
deps: update @vim-fall/std to 0.5.0
1 parent ca51698 commit e16c00d

File tree

9 files changed

+12
-12
lines changed

9 files changed

+12
-12
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ fundamental pickers as default configurations.
8282

8383
```typescript
8484
import { type Entrypoint } from "jsr:@vim-fall/config@^0.17.3";
85-
import * as builtin from "jsr:@vim-fall/std@^0.4.0/builtin";
85+
import * as builtin from "jsr:@vim-fall/std@^0.5.0/builtin";
8686

8787
export const main: Entrypoint = ({
8888
defineItemPickerFromSource,

denops/fall/_assets/default.config.ts

Lines changed: 2 additions & 2 deletions
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.4.0";
7-
import * as builtin from "jsr:@vim-fall/std@^0.4.0/builtin";
6+
} from "jsr:@vim-fall/std@^0.5.0";
7+
import * as builtin from "jsr:@vim-fall/std@^0.5.0/builtin";
88
import { SEPARATOR } from "jsr:@std/path@^1.0.8/constants";
99

1010
const myPathActions = {

denops/fall/_assets/minimum.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import type { Entrypoint } from "jsr:@vim-fall/config@^0.17.3";
2-
import * as builtin from "jsr:@vim-fall/std@^0.4.0/builtin";
2+
import * as builtin from "jsr:@vim-fall/std@^0.5.0/builtin";
33

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

denops/fall/config.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ import {
1313
type ItemPickerParams,
1414
} from "jsr:@vim-fall/config@^0.17.3/item-picker";
1515

16-
import { modern } from "jsr:@vim-fall/std@^0.4.0/builtin/coordinator/modern";
17-
import { MODERN_THEME } from "jsr:@vim-fall/std@^0.4.0/builtin/theme/modern";
18-
import { fzf } from "jsr:@vim-fall/std@^0.4.0/builtin/matcher/fzf";
16+
import { modern } from "jsr:@vim-fall/std@^0.5.0/builtin/coordinator/modern";
17+
import { MODERN_THEME } from "jsr:@vim-fall/std@^0.5.0/builtin/theme/modern";
18+
import { fzf } from "jsr:@vim-fall/std@^0.5.0/builtin/matcher/fzf";
1919

2020
const defaultGlobalConfig: GlobalConfig = {
2121
coordinator: modern(),

denops/fall/processor/collect_test.ts

Lines changed: 1 addition & 1 deletion
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.4.0";
8+
import { defineSource } from "jsr:@vim-fall/std@^0.5.0";
99

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

denops/fall/processor/match_test.ts

Lines changed: 1 addition & 1 deletion
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.4.0";
12+
import { defineMatcher } from "jsr:@vim-fall/std@^0.5.0";
1313

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

denops/fall/processor/preview_test.ts

Lines changed: 1 addition & 1 deletion
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.4.0";
12+
import { definePreviewer } from "jsr:@vim-fall/std@^0.5.0";
1313

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

denops/fall/processor/render_test.ts

Lines changed: 1 addition & 1 deletion
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.4.0";
12+
import { defineRenderer } from "jsr:@vim-fall/std@^0.5.0";
1313

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

denops/fall/processor/sort_test.ts

Lines changed: 1 addition & 1 deletion
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.4.0";
12+
import { defineSorter } from "jsr:@vim-fall/std@^0.5.0";
1313

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

0 commit comments

Comments
 (0)