Skip to content

Commit c2f6adb

Browse files
committed
💪 Fix decoration internal names
1 parent 363b3fd commit c2f6adb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

denops_std/buffer/decoration.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ async function vimDecorate(
3939
bufnr: number,
4040
decorations: Decoration[],
4141
): Promise<void> {
42-
const toPropType = (n: string) => `gin:decoration:decorate:${n}`;
42+
const toPropType = (n: string) => `denops_std:buffer:decoration:decorate:${n}`;
4343
try {
4444
for (const chunk of itertools.chunked(decorations, 1000)) {
4545
await batch.batch(denops, async (denops) => {
@@ -64,7 +64,7 @@ async function nvimDecorate(
6464
): Promise<void> {
6565
const ns = await nvimFn.nvim_create_namespace(
6666
denops,
67-
"gin:decoration:decorate",
67+
"denops_std:buffer:decoration:decorate",
6868
);
6969
for (const chunk of itertools.chunked(decorations, 1000)) {
7070
await batch.batch(denops, async (denops) => {

0 commit comments

Comments
 (0)