Skip to content

Commit

Permalink
Fix highlights error
Browse files Browse the repository at this point in the history
  • Loading branch information
Shougo committed Jun 29, 2023
1 parent 2750c11 commit 2392ec2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions denops/ddc-source-nvim-lsp/completion_item.ts
Original file line number Diff line number Diff line change
Expand Up @@ -232,13 +232,13 @@ export default class CompletionItem {
highlights: this.isDeprecated(lspItem)
? [{
type: "abbr",
// The property 'name' only makes sense in vim.
// NOTE: The property 'name' only makes sense in Vim.
name: "",
hl_group: "DdcNvimLspDeprecated",
col: 1,
width: byteLength(abbr),
}]
: undefined,
: [],
};
}

Expand Down

0 comments on commit 2392ec2

Please sign in to comment.