Skip to content

Commit

Permalink
Update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
Shougo committed Oct 28, 2024
1 parent 25b5f99 commit e11540a
Show file tree
Hide file tree
Showing 10 changed files with 27 additions and 27 deletions.
4 changes: 2 additions & 2 deletions denops/@ddc-filters/converter_kind_labels.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { byteLength } from "../ddc-source-lsp/completion_item.ts";

import { type Item } from "jsr:@shougo/ddc-vim@~7.0.0/types";
import { BaseFilter } from "jsr:@shougo/ddc-vim@~7.0.0/filter";
import { type Item } from "jsr:@shougo/ddc-vim@~7.1.0/types";
import { BaseFilter } from "jsr:@shougo/ddc-vim@~7.1.0/filter";

type Params = {
kindLabels: Record<string, string>;
Expand Down
4 changes: 2 additions & 2 deletions denops/@ddc-filters/sorter_lsp-kind.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import {
BaseFilter,
type FilterArguments,
} from "jsr:@shougo/ddc-vim@~7.0.0/filter";
import { type Item } from "jsr:@shougo/ddc-vim@~7.0.0/types";
} from "jsr:@shougo/ddc-vim@~7.1.0/filter";
import { type Item } from "jsr:@shougo/ddc-vim@~7.1.0/types";
import { CompletionItem } from "../ddc-source-lsp/completion_item.ts";

type LspKind = typeof CompletionItem.Kind[keyof typeof CompletionItem.Kind];
Expand Down
10 changes: 5 additions & 5 deletions denops/@ddc-sources/lsp.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,17 +13,17 @@ import {
type DdcGatherItems,
type Item,
type Previewer,
} from "jsr:@shougo/ddc-vim@~7.0.0/types";
} from "jsr:@shougo/ddc-vim@~7.1.0/types";
import {
BaseSource,
type GatherArguments,
type GetPreviewerArguments,
type OnCompleteDoneArguments,
} from "jsr:@shougo/ddc-vim@~7.0.0/source";
} from "jsr:@shougo/ddc-vim@~7.1.0/source";

import type { Denops } from "jsr:@denops/std@~7.1.0";
import * as fn from "jsr:@denops/std@~7.1.0/function";
import * as op from "jsr:@denops/std@~7.1.0/option";
import type { Denops } from "jsr:@denops/std@~7.3.0";
import * as fn from "jsr:@denops/std@~7.3.0/function";
import * as op from "jsr:@denops/std@~7.3.0/option";

import { ensure } from "jsr:@core/unknownutil@~4.3.0/ensure";
import { is } from "jsr:@core/unknownutil@~4.3.0/is";
Expand Down
4 changes: 2 additions & 2 deletions denops/ddc-source-lsp/client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ import { OffsetEncoding } from "./deps/lsp.ts";
import { LSP } from "./deps/lsp.ts";
import { Params } from "../@ddc-sources/lsp.ts";

import type { Denops } from "jsr:@denops/std@~7.1.0";
import * as fn from "jsr:@denops/std@~7.1.0/function";
import type { Denops } from "jsr:@denops/std@~7.3.0";
import * as fn from "jsr:@denops/std@~7.3.0/function";

export type Client = {
id: number | string;
Expand Down
4 changes: 2 additions & 2 deletions denops/ddc-source-lsp/completion_item.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ import createSelectText from "./select_text.ts";
import { ConfirmBehavior, Params, UserData } from "../@ddc-sources/lsp.ts";
import * as snippet from "./snippet.ts";

import { type Item, type PumHighlight } from "jsr:@shougo/ddc-vim@~7.0.0/types";
import { type Item, type PumHighlight } from "jsr:@shougo/ddc-vim@~7.1.0/types";

import type { Denops } from "jsr:@denops/std@~7.1.0";
import type { Denops } from "jsr:@denops/std@~7.3.0";

export class CompletionItem {
static Kind = {
Expand Down
4 changes: 2 additions & 2 deletions denops/ddc-source-lsp/completion_item_test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ import { assertBuffer, searchCursor } from "./test_util.ts";
import { CompletionItem } from "./completion_item.ts";
import { Params } from "../@ddc-sources/lsp.ts";

import type { Denops } from "jsr:@denops/std@~7.1.0";
import * as nvim from "jsr:@denops/std@~7.1.0/function/nvim";
import type { Denops } from "jsr:@denops/std@~7.3.0";
import * as nvim from "jsr:@denops/std@~7.3.0/function/nvim";
import { test } from "jsr:@denops/test@~3.0.2";

import { assertEquals } from "jsr:@std/assert@~1.0.0/equals";
Expand Down
6 changes: 3 additions & 3 deletions denops/ddc-source-lsp/request.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ import { uriFromBufnr } from "./deps/lsp.ts";
import { Params } from "../@ddc-sources/lsp.ts";
import { Client } from "./client.ts";

import type { Denops } from "jsr:@denops/std@~7.1.0";
import * as fn from "jsr:@denops/std@~7.1.0/function";
import { register } from "jsr:@denops/std@~7.1.0/lambda";
import type { Denops } from "jsr:@denops/std@~7.3.0";
import * as fn from "jsr:@denops/std@~7.3.0/function";
import { register } from "jsr:@denops/std@~7.3.0/lambda";

import { deadline } from "jsr:@std/async@~1.0.0/deadline";
import { ensure } from "jsr:@core/unknownutil@~4.3.0/ensure";
Expand Down
6 changes: 3 additions & 3 deletions denops/ddc-source-lsp/snippet.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import { linePatch, parseSnippet } from "./deps/lsp.ts";
import { Params } from "../@ddc-sources/lsp.ts";

import type { Denops } from "jsr:@denops/std@~7.1.0";
import * as fn from "jsr:@denops/std@~7.1.0/function";
import * as op from "jsr:@denops/std@~7.1.0/option";
import type { Denops } from "jsr:@denops/std@~7.3.0";
import * as fn from "jsr:@denops/std@~7.3.0/function";
import * as op from "jsr:@denops/std@~7.3.0/option";

// Copyright (c) 2019 hrsh7th
// https://github.com/hrsh7th/vim-vsnip/blob/7753ba9c10429c29d25abfd11b4c60b76718c438/autoload/vsnip/indent.vim
Expand Down
8 changes: 4 additions & 4 deletions denops/ddc-source-lsp/snippet_test.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import { assertBuffer, searchCursor } from "./test_util.ts";
import { expand } from "./snippet.ts";

import type { Denops } from "jsr:@denops/std@~7.1.0";
import * as nvim from "jsr:@denops/std@~7.1.0/function/nvim";
import * as op from "jsr:@denops/std@~7.1.0/option";
import type { Denops } from "jsr:@denops/std@~7.3.0";
import * as nvim from "jsr:@denops/std@~7.3.0/function/nvim";
import * as op from "jsr:@denops/std@~7.3.0/option";
import { test } from "jsr:@denops/test@~3.0.2";
import { batch } from "jsr:@denops/std@~7.1.0/batch";
import { batch } from "jsr:@denops/std@~7.3.0/batch";

type Suite = {
expandtab: boolean;
Expand Down
4 changes: 2 additions & 2 deletions denops/ddc-source-lsp/test_util.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { byteLength } from "./completion_item.ts";

import type { Denops } from "jsr:@denops/std@~7.1.0";
import * as nvim from "jsr:@denops/std@~7.1.0/function/nvim";
import type { Denops } from "jsr:@denops/std@~7.3.0";
import * as nvim from "jsr:@denops/std@~7.3.0/function/nvim";

import { assertEquals } from "jsr:@std/assert@~1.0.0/equals";

Expand Down

0 comments on commit e11540a

Please sign in to comment.