Skip to content

Commit e6be1c3

Browse files
committed
deps: update @vim-fall/std
1 parent 6cf4cf5 commit e6be1c3

File tree

10 files changed

+33
-51
lines changed

10 files changed

+33
-51
lines changed

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.0";
22
import * as fn from "jsr:@denops/std@^7.3.0/function";
33
import * as buffer from "jsr:@denops/std@^7.3.0/buffer";
4-
import type { Dimension } from "jsr:@vim-fall/std@^0.1.0-pre.0/coordinator";
4+
import type { Dimension } from "jsr:@vim-fall/std@^0.1.0/coordinator";
55

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

denops/fall/config/action_picker.ts

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

1310
import { getGlobalConfig } from "./global_config.ts";
1411

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.1.0-pre.0/config";
5-
import { modern as modernLayout } from "jsr:@vim-fall/std@^0.1.0-pre.0/builtin/coordinator/modern";
6-
import { MODERN_THEME } from "jsr:@vim-fall/std@^0.1.0-pre.0/builtin/theme/modern";
7-
import { derive } from "jsr:@vim-fall/std@^0.1.0-pre.0/util/derivable";
4+
} from "jsr:@vim-fall/std@^0.1.0/config";
5+
import { modern as modernLayout } from "jsr:@vim-fall/std@^0.1.0/builtin/coordinator/modern";
6+
import { MODERN_THEME } from "jsr:@vim-fall/std@^0.1.0/builtin/theme/modern";
7+
import { derive } from "jsr:@vim-fall/std@^0.1.0/util/derivable";
88

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

denops/fall/config/item_picker.ts

Lines changed: 5 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,18 @@
11
import type { Denops } from "jsr:@denops/std@^7.3.0";
2-
import type { Curator } from "jsr:@vim-fall/std@^0.1.0-pre.0/curator";
3-
import type {
4-
CollectParams,
5-
Source,
6-
} from "jsr:@vim-fall/std@^0.1.0-pre.0/source";
7-
import type {
8-
Matcher,
9-
MatchParams,
10-
} from "jsr:@vim-fall/std@^0.1.0-pre.0/matcher";
2+
import type { Curator } from "jsr:@vim-fall/std@^0.1.0/curator";
3+
import type { CollectParams, Source } from "jsr:@vim-fall/std@^0.1.0/source";
4+
import type { Matcher, MatchParams } from "jsr:@vim-fall/std@^0.1.0/matcher";
115
import type {
126
DefineItemPickerFromCurator,
137
DefineItemPickerFromSource,
148
GlobalConfig,
159
ItemPickerParams,
16-
} from "jsr:@vim-fall/std@^0.1.0-pre.0/config";
10+
} from "jsr:@vim-fall/std@^0.1.0/config";
1711
import {
1812
derive,
1913
deriveArray,
2014
deriveMap,
21-
} from "jsr:@vim-fall/std@^0.1.0-pre.0/util/derivable";
15+
} from "jsr:@vim-fall/std@^0.1.0/util/derivable";
2216

2317
import { getGlobalConfig } from "./global_config.ts";
2418

denops/fall/main/picker.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ import {
99
is,
1010
type Predicate,
1111
} from "jsr:@core/unknownutil@^4.3.0";
12-
import type { Size } from "jsr:@vim-fall/std@^0.1.0-pre.0/coordinator";
12+
import type { Size } from "jsr:@vim-fall/std@^0.1.0/coordinator";
1313
import type {
1414
GlobalConfig,
1515
ItemPickerParams,
16-
} from "jsr:@vim-fall/std@^0.1.0-pre.0/config";
16+
} from "jsr:@vim-fall/std@^0.1.0/config";
1717

1818
import {
1919
getActionPickerParams,

denops/fall/picker.ts

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

1916
import { Scheduler } from "./lib/scheduler.ts";
2017
import { Cmdliner } from "./util/cmdliner.ts";

denops/fall/processor/collect.ts

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,8 @@
11
import type { Denops } from "jsr:@denops/std@^7.3.0";
22
import { chunked } from "jsr:@core/iterutil@^0.9.0/async/chunked";
33
import { take } from "jsr:@core/iterutil@^0.9.0/async/take";
4-
import type { IdItem } from "jsr:@vim-fall/std@^0.1.0-pre.0/item";
5-
import type {
6-
CollectParams,
7-
Source,
8-
} from "jsr:@vim-fall/std@^0.1.0-pre.0/source";
4+
import type { IdItem } from "jsr:@vim-fall/std@^0.1.0/item";
5+
import type { CollectParams, Source } from "jsr:@vim-fall/std@^0.1.0/source";
96

107
import { dispatch } from "../event.ts";
118

denops/fall/processor/match.ts

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,8 @@ import { delay } from "jsr:@std/async@^1.0.0/delay";
33
import { chunked } from "jsr:@core/iterutil@^0.9.0/async/chunked";
44
import { take } from "jsr:@core/iterutil@^0.9.0/async/take";
55
import { toAsyncIterable } from "jsr:@core/iterutil@^0.9.0/async/to-async-iterable";
6-
import type { IdItem } from "jsr:@vim-fall/std@^0.1.0-pre.0/item";
7-
import type {
8-
Matcher,
9-
MatchParams,
10-
} from "jsr:@vim-fall/std@^0.1.0-pre.0/matcher";
6+
import type { IdItem } from "jsr:@vim-fall/std@^0.1.0/item";
7+
import type { Matcher, MatchParams } from "jsr:@vim-fall/std@^0.1.0/matcher";
118

129
import { dispatch } from "../event.ts";
1310

denops/fall/processor/preview.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
import type { Denops } from "jsr:@denops/std@^7.3.0";
2-
import type { PreviewItem } from "jsr:@vim-fall/std@^0.1.0-pre.0/item";
2+
import type { PreviewItem } from "jsr:@vim-fall/std@^0.1.0/item";
33
import type {
44
Previewer,
55
PreviewParams,
6-
} from "jsr:@vim-fall/std@^0.1.0-pre.0/previewer";
6+
} from "jsr:@vim-fall/std@^0.1.0/previewer";
77

88
import { dispatch } from "../event.ts";
99

denops/fall/processor/visualize.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import type { Denops } from "jsr:@denops/std@^7.3.0";
2-
import type { DisplayItem, IdItem } from "jsr:@vim-fall/std@^0.1.0-pre.0/item";
3-
import type { Renderer } from "jsr:@vim-fall/std@^0.1.0-pre.0/renderer";
4-
import type { Sorter } from "jsr:@vim-fall/std@^0.1.0-pre.0/sorter";
2+
import type { DisplayItem, IdItem } from "jsr:@vim-fall/std@^0.1.0/item";
3+
import type { Renderer } from "jsr:@vim-fall/std@^0.1.0/renderer";
4+
import type { Sorter } from "jsr:@vim-fall/std@^0.1.0/sorter";
55

66
import { dispatch } from "../event.ts";
77
import { adjustOffset } from "../lib/adjust_offset.ts";

0 commit comments

Comments
 (0)