Skip to content

Commit 9f11599

Browse files
committed
release 30efc7d
1 parent 4165a23 commit 9f11599

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

autoload/coc.vim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ endfunction
178178
function! coc#_map()
179179
if !s:select_api | return | endif
180180
for i in range(1, 9)
181-
exe 'inoremap <buffer> '.i.' <C-R>=nvim_select_popupmenu_item('.(i - 1).', v:true, v:true, {})<CR>'
181+
exe 'inoremap <buffer> '.i.' <Cmd>call nvim_select_popupmenu_item('.(i - 1).', v:true, v:true, {})<cr>'
182182
endfor
183183
endfunction
184184

build/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54267,7 +54267,7 @@ class Plugin extends events_1.EventEmitter {
5426754267
return false;
5426854268
}
5426954269
get version() {
54270-
return workspace_1.default.version + ( true ? '-' + "03496942b8" : undefined);
54270+
return workspace_1.default.version + ( true ? '-' + "30efc7d4ee" : undefined);
5427154271
}
5427254272
async showInfo() {
5427354273
if (!this.infoChannel) {
@@ -61439,7 +61439,7 @@ class Languages {
6143961439
sortText: item.sortText || null,
6144061440
filterText: item.filterText || label,
6144161441
isSnippet,
61442-
dup: item.data.dup == 0 ? 0 : 1
61442+
dup: item.data && item.data.dup == 0 ? 0 : 1
6144361443
};
6144461444
if (item && item.detail && detailField != 'preview') {
6144561445
let detail = item.detail.replace(/\n\s*/g, ' ');

0 commit comments

Comments
 (0)