Skip to content

Commit f74eddd

Browse files
committed
deps: update @vim-fall/std to 0.4.0
1 parent f27261c commit f74eddd

File tree

19 files changed

+48
-48
lines changed

19 files changed

+48
-48
lines changed

denops/fall/component/_component.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import type { Denops } from "jsr:@denops/std@^7.3.2";
22
import * as popup from "jsr:@denops/std@^7.3.2/popup";
3-
import type { Border } from "jsr:@vim-fall/std@^0.2.0/theme";
4-
import type { Dimension } from "jsr:@vim-fall/std@^0.2.0/coordinator";
3+
import type { Border } from "jsr:@vim-fall/std@^0.4.0/theme";
4+
import type { Dimension } from "jsr:@vim-fall/std@^0.4.0/coordinator";
55

66
export type ComponentProperties = {
77
title?: string;

denops/fall/component/input.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import type { Denops } from "jsr:@denops/std@^7.3.2";
22
import * as fn from "jsr:@denops/std@^7.3.2/function";
33
import * as buffer from "jsr:@denops/std@^7.3.2/buffer";
4-
import type { Dimension } from "jsr:@vim-fall/std@^0.2.0/coordinator";
4+
import type { Dimension } from "jsr:@vim-fall/std@^0.4.0/coordinator";
55

66
import { Spinner } from "../lib/spinner.ts";
77
import { adjustOffset } from "../lib/adjust_offset.ts";

denops/fall/component/list.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ import type { Decoration } from "jsr:@denops/std@^7.3.2/buffer";
33
import { batch } from "jsr:@denops/std@^7.3.2/batch";
44
import * as fn from "jsr:@denops/std@^7.3.2/function";
55
import * as buffer from "jsr:@denops/std@^7.3.2/buffer";
6-
import type { DetailUnit, DisplayItem } from "jsr:@vim-fall/std@^0.2.0/item";
7-
import type { Dimension } from "jsr:@vim-fall/std@^0.2.0/coordinator";
6+
import type { DetailUnit, DisplayItem } from "jsr:@vim-fall/std@^0.4.0/item";
7+
import type { Dimension } from "jsr:@vim-fall/std@^0.4.0/coordinator";
88

99
import { BaseComponent } from "./_component.ts";
1010

denops/fall/component/preview.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ import type { Denops } from "jsr:@denops/std@^7.3.2";
22
import * as fn from "jsr:@denops/std@^7.3.2/function";
33
import * as buffer from "jsr:@denops/std@^7.3.2/buffer";
44
import { batch } from "jsr:@denops/std@^7.3.2/batch";
5-
import type { PreviewItem } from "jsr:@vim-fall/std@^0.2.0/item";
6-
import type { Dimension } from "jsr:@vim-fall/std@^0.2.0/coordinator";
5+
import type { PreviewItem } from "jsr:@vim-fall/std@^0.4.0/item";
6+
import type { Dimension } from "jsr:@vim-fall/std@^0.4.0/coordinator";
77

88
import { BaseComponent, type ComponentProperties } from "./_component.ts";
99

denops/fall/config/action_picker.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@ import type {
22
ActionPickerParams,
33
GlobalConfig,
44
RefineActionPicker,
5-
} from "jsr:@vim-fall/std@^0.2.0/config";
6-
import { modern as modernCoordinator } from "jsr:@vim-fall/std@^0.2.0/builtin/coordinator/modern";
7-
import { fzf as fzfMatcher } from "jsr:@vim-fall/std@^0.2.0/builtin/matcher/fzf";
8-
import { derive, deriveArray } from "jsr:@vim-fall/std@^0.2.0/util/derivable";
5+
} from "jsr:@vim-fall/std@^0.4.0/config";
6+
import { modern as modernCoordinator } from "jsr:@vim-fall/std@^0.4.0/builtin/coordinator/modern";
7+
import { fzf as fzfMatcher } from "jsr:@vim-fall/std@^0.4.0/builtin/matcher/fzf";
8+
import { derive, deriveArray } from "jsr:@vim-fall/std@^0.4.0/util/derivable";
99

1010
import { getGlobalConfig } from "./global_config.ts";
1111

denops/fall/config/global_config.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
import type {
22
GlobalConfig,
33
RefineGlobalConfig,
4-
} from "jsr:@vim-fall/std@^0.2.0/config";
5-
import { modern as modernLayout } from "jsr:@vim-fall/std@^0.2.0/builtin/coordinator/modern";
6-
import { MODERN_THEME } from "jsr:@vim-fall/std@^0.2.0/builtin/theme/modern";
7-
import { derive } from "jsr:@vim-fall/std@^0.2.0/util/derivable";
4+
} from "jsr:@vim-fall/std@^0.4.0/config";
5+
import { modern as modernLayout } from "jsr:@vim-fall/std@^0.4.0/builtin/coordinator/modern";
6+
import { MODERN_THEME } from "jsr:@vim-fall/std@^0.4.0/builtin/theme/modern";
7+
import { derive } from "jsr:@vim-fall/std@^0.4.0/util/derivable";
88

99
const globalConfig: GlobalConfig = {
1010
coordinator: modernLayout(),

denops/fall/config/item_picker.ts

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
import type { Denops } from "jsr:@denops/std@^7.3.2";
2-
import type { Detail, DetailUnit, IdItem } from "jsr:@vim-fall/std@^0.2.0/item";
3-
import type { Curator } from "jsr:@vim-fall/std@^0.2.0/curator";
4-
import type { Action } from "jsr:@vim-fall/std@^0.2.0/action";
5-
import type { CollectParams, Source } from "jsr:@vim-fall/std@^0.2.0/source";
6-
import type { Matcher, MatchParams } from "jsr:@vim-fall/std@^0.2.0/matcher";
2+
import type { Detail, DetailUnit, IdItem } from "jsr:@vim-fall/std@^0.4.0/item";
3+
import type { Curator } from "jsr:@vim-fall/std@^0.4.0/curator";
4+
import type { Action } from "jsr:@vim-fall/std@^0.4.0/action";
5+
import type { CollectParams, Source } from "jsr:@vim-fall/std@^0.4.0/source";
6+
import type { Matcher, MatchParams } from "jsr:@vim-fall/std@^0.4.0/matcher";
77
import type {
88
DefineItemPickerFromCurator,
99
DefineItemPickerFromSource,
1010
GlobalConfig,
1111
ItemPickerParams,
12-
} from "jsr:@vim-fall/std@^0.2.0/config";
12+
} from "jsr:@vim-fall/std@^0.4.0/config";
1313
import {
1414
derive,
1515
deriveArray,
1616
deriveMap,
17-
} from "jsr:@vim-fall/std@^0.2.0/util/derivable";
17+
} from "jsr:@vim-fall/std@^0.4.0/util/derivable";
1818

1919
import { getGlobalConfig } from "./global_config.ts";
2020

denops/fall/main/picker.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@ import {
99
is,
1010
type Predicate,
1111
} from "jsr:@core/unknownutil@^4.3.0";
12-
import type { Size } from "jsr:@vim-fall/std@^0.2.0/coordinator";
13-
import type { DetailUnit } from "jsr:@vim-fall/std@^0.2.0/item";
12+
import type { Size } from "jsr:@vim-fall/std@^0.4.0/coordinator";
13+
import type { DetailUnit } from "jsr:@vim-fall/std@^0.4.0/item";
1414
import type {
1515
GlobalConfig,
1616
ItemPickerParams,
17-
} from "jsr:@vim-fall/std@^0.2.0/config";
17+
} from "jsr:@vim-fall/std@^0.4.0/config";
1818

1919
import { ensureAsyncDisposable } from "../lib/dispose.ts";
2020
import {

denops/fall/picker.ts

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@ import * as autocmd from "jsr:@denops/std@^7.3.2/autocmd";
44
import * as lambda from "jsr:@denops/std@^7.3.2/lambda";
55
import { collect } from "jsr:@denops/std@^7.3.2/batch";
66
import { unreachable } from "jsr:@core/errorutil@^1.2.0/unreachable";
7-
import type { Detail, IdItem } from "jsr:@vim-fall/std@^0.2.0/item";
8-
import type { Coordinator, Size } from "jsr:@vim-fall/std@^0.2.0/coordinator";
9-
import type { Source } from "jsr:@vim-fall/std@^0.2.0/source";
10-
import type { Matcher } from "jsr:@vim-fall/std@^0.2.0/matcher";
11-
import type { Sorter } from "jsr:@vim-fall/std@^0.2.0/sorter";
12-
import type { Renderer } from "jsr:@vim-fall/std@^0.2.0/renderer";
13-
import type { Previewer } from "jsr:@vim-fall/std@^0.2.0/previewer";
14-
import type { Theme } from "jsr:@vim-fall/std@^0.2.0/theme";
7+
import type { Detail, IdItem } from "jsr:@vim-fall/std@^0.4.0/item";
8+
import type { Coordinator, Size } from "jsr:@vim-fall/std@^0.4.0/coordinator";
9+
import type { Source } from "jsr:@vim-fall/std@^0.4.0/source";
10+
import type { Matcher } from "jsr:@vim-fall/std@^0.4.0/matcher";
11+
import type { Sorter } from "jsr:@vim-fall/std@^0.4.0/sorter";
12+
import type { Renderer } from "jsr:@vim-fall/std@^0.4.0/renderer";
13+
import type { Previewer } from "jsr:@vim-fall/std@^0.4.0/previewer";
14+
import type { Theme } from "jsr:@vim-fall/std@^0.4.0/theme";
1515

1616
import { Scheduler } from "./lib/scheduler.ts";
1717
import { Cmdliner } from "./util/cmdliner.ts";

denops/fall/processor/collect.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import type { Denops } from "jsr:@denops/std@^7.3.2";
22
import { take } from "jsr:@core/iterutil@^0.9.0/async/take";
33
import { map } from "jsr:@core/iterutil@^0.9.0/map";
4-
import type { Detail, IdItem } from "jsr:@vim-fall/std@^0.2.0/item";
5-
import type { CollectParams, Source } from "jsr:@vim-fall/std@^0.2.0/source";
4+
import type { Detail, IdItem } from "jsr:@vim-fall/std@^0.4.0/item";
5+
import type { CollectParams, Source } from "jsr:@vim-fall/std@^0.4.0/source";
66

77
import { Chunker } from "../lib/chunker.ts";
88
import { dispose } from "../lib/dispose.ts";

0 commit comments

Comments
 (0)