Skip to content

Commit

Permalink
Update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
Shougo committed Jan 18, 2024
1 parent e9463fd commit 39d66a6
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 6 deletions.
12 changes: 6 additions & 6 deletions denops/ddc/deps.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,21 +11,21 @@ export * as op from "https://deno.land/x/denops_std@v5.2.0/option/mod.ts";
export * as fn from "https://deno.land/x/denops_std@v5.2.0/function/mod.ts";
export * as vars from "https://deno.land/x/denops_std@v5.2.0/variable/mod.ts";
export * as autocmd from "https://deno.land/x/denops_std@v5.2.0/autocmd/mod.ts";
export * as base64 from "https://deno.land/std@0.210.0/encoding/base64.ts";
export * as base64 from "https://deno.land/std@0.212.0/encoding/base64.ts";
export {
assertEquals,
equal,
} from "https://deno.land/std@0.210.0/assert/mod.ts";
} from "https://deno.land/std@0.212.0/assert/mod.ts";
export {
basename,
parse,
toFileUrl,
} from "https://deno.land/std@0.210.0/path/mod.ts";
} from "https://deno.land/std@0.212.0/path/mod.ts";
export {
deadline,
DeadlineError,
} from "https://deno.land/std@0.210.0/async/mod.ts";
} from "https://deno.land/std@0.212.0/async/mod.ts";
export { TimeoutError } from "https://deno.land/x/msgpack_rpc@v4.0.1/response_waiter.ts";
export { spy } from "https://deno.land/x/mock@0.15.2/mock.ts";
export { ensure, is } from "https://deno.land/x/unknownutil@v3.11.0/mod.ts";
export { Lock } from "https://deno.land/x/async@v2.0.2/mod.ts";
export { ensure, is } from "https://deno.land/x/unknownutil@v3.14.1/mod.ts";
export { Lock } from "https://deno.land/x/async@v2.1.0/mod.ts";
5 changes: 5 additions & 0 deletions doc/ddc.txt
Original file line number Diff line number Diff line change
Expand Up @@ -421,22 +421,27 @@ ddc#custom#alias({type}, {alias-name}, {base-name})
*ddc#custom#get_buffer()*
ddc#custom#get_buffer()
Get current buffer specific options.
NOTE: It must be called after |DenopsReady|.

*ddc#custom#get_current()*
ddc#custom#get_current()
Get current options.
NOTE: It must be called after |DenopsReady|.

*ddc#custom#get_filetype()*
ddc#custom#get_filetype()
Get filetype specific options.
NOTE: It must be called after |DenopsReady|.

*ddc#custom#get_context()*
ddc#custom#get_context()
Get context specific options.
NOTE: It must be called after |DenopsReady|.

*ddc#custom#get_global()*
ddc#custom#get_global()
Get global options.
NOTE: It must be called after |DenopsReady|.

*ddc#custom#load_config()*
ddc#custom#load_config({path})
Expand Down

0 comments on commit 39d66a6

Please sign in to comment.