-
|
Beta Was this translation helpful? Give feedback.
Answered by
chemzqm
Oct 17, 2022
Replies: 2 comments 2 replies
-
Create a function like function! ToggleList() abort
let find = 0
for info in getwininfo()
if bufname(info['bufnr']) =~# 'list:///'
let find = 1
break
endif
endfor
if find
CocListCancel
else
CocListResume
endif
endfunction |
Beta Was this translation helpful? Give feedback.
2 replies
Answer selected by
chemzqm
-
Got it.
… On Oct 18, 2022, at 1:40 PM, Qiming zhao ***@***.*** ***@***.***>> wrote:
It's vim's issue.
—
Reply to this email directly, view it on GitHub <#4298 (reply in thread)>, or unsubscribe <https://github.com/notifications/unsubscribe-auth/AAIEZ2IBAIRPWQDQR27PFHTWDYZ5RANCNFSM6AAAAAARHHFPTY>.
You are receiving this because you authored the thread.
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Create a function like