File tree Expand file tree Collapse file tree 10 files changed +33
-51
lines changed Expand file tree Collapse file tree 10 files changed +33
-51
lines changed Original file line number Diff line number Diff line change 11import type { Denops } from "jsr:@denops/std@^7.3.0" ;
22import * as fn from "jsr:@denops/std@^7.3.0/function" ;
33import * 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
66import { Spinner } from "../lib/spinner.ts" ;
77import { adjustOffset } from "../lib/adjust_offset.ts" ;
Original file line number Diff line number Diff 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
1310import { getGlobalConfig } from "./global_config.ts" ;
1411
Original file line number Diff line number Diff line change 11import 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
99const globalConfig : GlobalConfig = {
1010 coordinator : modernLayout ( ) ,
Original file line number Diff line number Diff line change 11import 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" ;
115import 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" ;
1711import {
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
2317import { getGlobalConfig } from "./global_config.ts" ;
2418
Original file line number Diff line number Diff 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" ;
1313import 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
1818import {
1919 getActionPickerParams ,
Original file line number Diff line number Diff line change @@ -4,17 +4,14 @@ import * as autocmd from "jsr:@denops/std@^7.3.0/autocmd";
44import * as lambda from "jsr:@denops/std@^7.3.0/lambda" ;
55import { collect } from "jsr:@denops/std@^7.3.0/batch" ;
66import { 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
1916import { Scheduler } from "./lib/scheduler.ts" ;
2017import { Cmdliner } from "./util/cmdliner.ts" ;
Original file line number Diff line number Diff line change 11import type { Denops } from "jsr:@denops/std@^7.3.0" ;
22import { chunked } from "jsr:@core/iterutil@^0.9.0/async/chunked" ;
33import { 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
107import { dispatch } from "../event.ts" ;
118
Original file line number Diff line number Diff line change @@ -3,11 +3,8 @@ import { delay } from "jsr:@std/async@^1.0.0/delay";
33import { chunked } from "jsr:@core/iterutil@^0.9.0/async/chunked" ;
44import { take } from "jsr:@core/iterutil@^0.9.0/async/take" ;
55import { 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
129import { dispatch } from "../event.ts" ;
1310
Original file line number Diff line number Diff line change 11import 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" ;
33import 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
88import { dispatch } from "../event.ts" ;
99
Original file line number Diff line number Diff line change 11import 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
66import { dispatch } from "../event.ts" ;
77import { adjustOffset } from "../lib/adjust_offset.ts" ;
You can’t perform that action at this time.
0 commit comments