-
Notifications
You must be signed in to change notification settings - Fork 12
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
:call CocAction('colorPresentation') will cause stuck in vim #65
Comments
Can you reproduce this using the following config? call plug#begin(expand('~/.local/share/nvim/plugins'))
Plug 'neoclide/coc.nvim', { 'branch': 'release' }
call plug#end()
let g:coc_data_home = expand('~/.local/share/nvim/coc')
" May need for Vim (not Neovim) since coc.nvim calculates byte offset by count
" utf-8 byte sequence
set encoding=utf-8
" Some servers have issues with backup files, see #649
set nobackup
set nowritebackup
" Having longer updatetime (default is 4000 ms = 4s) leads to noticeable
" delays and poor user experience
set updatetime=300
" Always show the signcolumn, otherwise it would shift the text each time
" diagnostics appear/become resolved
set signcolumn=yes
set nocompatible {
"colors.enable": true,
"highlight.colors.enable": true,
"highlight.colorNames.enable": false,
"highlight.document.enable": true
} I was able reproduce this bug using the above config, and I only installed |
Update: |
Yes, I can confirm that Is this the expected behavior? If so, maybe it's necessary to update the coc help doc since there are many parts mentioned |
PR is welcome. |
Version info
OS: Darwin wenzhen.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:30:44 PST 2023; root:xnu-10002.81.5~7/RELEASE_ARM64_T6000 arm64
Node:
Vim:
CocInfo
Steps to reproduce
test.css
#f78681
and execute:call CocAction('colorPresentation')
Additional information
This bug doesn't exist in neovim.
The text was updated successfully, but these errors were encountered: