File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ async function vimDecorate(
39
39
bufnr : number ,
40
40
decorations : Decoration [ ] ,
41
41
) : Promise < void > {
42
- const toPropType = ( n : string ) => `gin :decoration:decorate:${ n } ` ;
42
+ const toPropType = ( n : string ) => `denops_std:buffer :decoration:decorate:${ n } ` ;
43
43
try {
44
44
for ( const chunk of itertools . chunked ( decorations , 1000 ) ) {
45
45
await batch . batch ( denops , async ( denops ) => {
@@ -64,7 +64,7 @@ async function nvimDecorate(
64
64
) : Promise < void > {
65
65
const ns = await nvimFn . nvim_create_namespace (
66
66
denops ,
67
- "gin :decoration:decorate" ,
67
+ "denops_std:buffer :decoration:decorate" ,
68
68
) ;
69
69
for ( const chunk of itertools . chunked ( decorations , 1000 ) ) {
70
70
await batch . batch ( denops , async ( denops ) => {
You can’t perform that action at this time.
0 commit comments