pythong 3.8 -> 3.10 설치뒤 pip도 확인해야함
python -m pip install pip --upgrade pip
curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py
sudo apt-get remove python3-pip
sudo apt-get remove python-pip
pyls
pip install python-language-server
검색도 별로 없고 오랜 시간 삽질했는데, 옵션을 키란 말이었음...
"lsRanges": true를 넣으면 된다
"initializationOptions": {
"cache": {
"directory": "/tmp/ccls"
},
"highlight": {
"lsRanges": true
}
}
}
https://www.reddit.com/r/neovim/comments/jwhf60/error_using_ccls_with_nvim/
Error using ccls with nvim
I'm pretty sure I built, installed, and configured clss correctly, below you can find my error message, coc-settings.json, and CocInfo in that...
www.reddit.com
https://ralpioxxcs.github.io/post/vim/vim_setting_3/
Vim 사용하기 #3 - C/C++ 개발환경 세팅
이번에는 neovim에서 coc.nvim를 이용하여 C/C++ 개발환경을 세팅하는 방법에 대해서 알아보겠다. coc.nvim은 Language Server Protocol인 LSP를 지원하는 코드 auto-completion 패키지인데 이전에는 ycm을 사용하다
ralpioxxcs.github.io
https://github.com/MaskRay/ccls/wiki/Build
GitHub - MaskRay/ccls: C/C++/ObjC language server supporting cross references, hierarchies, completion and semantic highlighting
C/C++/ObjC language server supporting cross references, hierarchies, completion and semantic highlighting - GitHub - MaskRay/ccls: C/C++/ObjC language server supporting cross references, hierarchie...
github.com