neoclide / coc.nvim

Nodejs extension host for vim & neovim, load extensions like VSCode and host language servers.
Other
24.33k stars 956 forks source link

coclist output disappeared #2455

Closed grimgort closed 3 years ago

grimgort commented 3 years ago

With last coc update, coclist output disappeared

versions

vim version: NVIM v0.4.4 node version: v14.10.0 coc.nvim version: 0.0.79-d2a3186309 coc.nvim directory: D:\ftarroux\vimDebugPlugin\coc.nvim term: undefined platform: win32

minimal vimrc : set nocompatible " be iMproved, required filetype off " required, so vundle will be loaded properly

"let g:mapleader = "," let mapleader=" "

set rtp+=~/vimDebugPlugin set rtp+=~/.vim let g:coc_global_extensions = [ \ 'coc-ultisnips', \ 'coc-json', \ 'coc-prettier', \ 'coc-html', \ 'coc-css', \ 'coc-highlight', \ 'coc-eslint', \ 'coc-marketplace', \ 'coc-snippets', \ 'coc-calc', \ 'coc-tslint', \ 'coc-todolist', \ 'coc-tabnine', \ 'coc-spell-checker', \ 'coc-browser', \ 'coc-dictionary', \ 'coc-bookmark', \ 'coc-cmake', \ 'coc-clangd', \ 'coc-vimlsp', \ 'coc-template', \ 'coc-python', \ 'coc-markdownlint', \ 'coc-highlight', \'coc-tag', \ 'coc-word', \'coc-syntax', \ 'coc-lists' ]

  "\ 'coc-explorer',
  "\ 'coc-tsserver',
  "\ 'coc-powershell',
  "\ 'coc-cspell-dicts',
  "\ 'coc-yaml',
  "\ 'coc-angular',

call plug#begin('~/vimDebugPlugin') Plug 'apalmer1377/factorus' "factoring c++ code

Plug 'sheerun/vim-polyglot' "Plug 'PProvost/vim-ps1' "display mark and allow new shortcut Plug 'kshenoy/vim-signature' "display mark and allow new shortcut "Plug 'vhdirk/vim-cmake' "Cmake command available for launch cmake --build build """"""""""""""""""""""""""""""""""" " color schema """"""""""""""""""""""""""""""""""" "Plug 'altercation/vim-colors-solarized' " solarized color for vim Plug 'lifepillar/vim-solarized8' Plug 'morhetz/gruvbox' Plug 'romainl/flattened' Plug 'drewtempelmeyer/palenight.vim' Plug 'ayu-theme/ayu-vim' "set termguicolors " enable true colors support "let ayucolor="light" " for light version of theme "let ayucolor="mirage" " for mirage version of theme "let ayucolor="dark" " for dark version of theme "colorscheme ayu Plug 'arcticicestudio/nord-vim' Plug 'rakr/vim-one' Plug 'mhartington/oceanic-next' """"""""""""""""""""""""""""""""""

"Plug 'Yggdroot/indentLine' " bug for json file were '' disparait Plug 'nathanaelkane/vim-indent-guides' Plug 'heavenshell/vim-pydocstring', { 'do': 'make install' } Plug 'lifepillar/vim-cheat40' Plug 'jackguo380/vim-lsp-cxx-highlight' "syntaxe highlight C++ for coc.nvim "Plug 'MattesGroeger/vim-bookmarks' "Plug 'tpope/vim-surround' " surround word under cursor with flag (\"\" or ()...) Plug 'luochen1990/rainbow' " color pair of bracket for better lisibility "Plug 'jiangmiao/auto-pairs' " ef

Plug 'mhinz/vim-startify' "show last recent opened file to vim startup "Plug 'prettier/vim-prettier', { 'do': 'yarn install' } "Plug 'sbdchd/neoformat' "Plug 'grailbio/bazel-compilation-database' Plug 'easymotion/vim-easymotion' Plug 'jreybert/vimagit' Plug 'liuchengxu/vim-which-key' Plug 'liuchengxu/vim-which-key', { 'on': ['WhichKey', 'WhichKey!'] } Plug 'neoclide/jsonc.vim' if has('nvim') "Plug 'TheZoq2/neovim-auto-autoread.git' "Plug 'huawenyu/new.vim' "Plug 'huawenyu/new-gdb.vim' "don t work on windows os "Plug 'sakhnik/nvim-gdb', { 'branch': 'legacy' } "Plug 'sakhnik/nvim-gdb', { 'do': ':!./install.sh | UpdateRemotePlugins' } ""suspected to bug snippet " "Plug 'ncm2/float-preview.nvim' else Plug 'pakutoma/toggle-terminal' endif Plug 'iamcco/markdown-preview.nvim', { 'do': { -> mkdp#util#install() } } Plug 'will133/vim-dirdiff' "diff between directory Plug 'rstacruz/vim-closer' Plug 'tpope/vim-fugitive' "fugitive = git wrapper Plug 'lambdalisue/gina.vim' Plug 'gregsexton/gitv', {'on': ['Gitv']} "top git log Plug 'majutsushi/tagbar' "display a menu with tag in file "Plug 'vim-scripts/Gundo' "Gundo.vim is Vim plugin to visualize your Vim undo tree Plug 'mbbill/undotree' "show vim history Plug 'Konfekt/FastFold' "empeche les lag avec syntaxe fold method Plug 'Shougo/echodoc' "Displays function signatures from completions in the command line Plug 'Chiel92/vim-autoformat' "autoformat "Plug 'Valloric/YouCompleteMe', { 'do': './install.py --clangd-completer --clang-completer --clang-tidy --js-completer' } " YouCompleteMe is a fast, as-you-type, fuzzy-search code completion engine for Vim. command ofr install : python install.py. alternative from omnicompletion + jedi-vim(for pyhton file) "Plug 'rdnetto/YCM-Generator', { 'branch': 'stable'} Plug 'itchyny/lightline.vim' Plug 'alvan/vim-closetag' "close html tag with key '>' or '>>' "Plug 'ludovicchabant/vim-gutentags' "auto tag git project "Plug 'tell-k/vim-autopep8' "allow command autopep8 in vim for python file "Plug 'sjl/splice.vim' "tool for resolve threeMerge conflict "Plug 'sirver/ultisnips' "UltiSnips is the ultimate solution for snippets in Vim (coc_ultisnip used but documentation available here) Plug 'scrooloose/nerdcommenter' "allow comment cc for comment "Plug 'Raimondi/delimitMate' "close bracket Plug 'rchicoli/vim-zoomwin' "zoom with ctl-w-o Plug 'airblade/vim-gitgutter' Plug 'vim-scripts/DoxygenToolkit.vim' "Plug 'dpelle/vim-Grammalecte' Plug 'mhinz/vim-grepper' Plug 'vigoux/LanguageTool.nvim' "Plug 'dpelle/vim-LanguageTool' Plug 'rhysd/vim-grammarous' Plug 'junegunn/vim-easy-align' "align text Plug 'skywind3000/asyncrun.vim' Plug 'octol/vim-cpp-enhanced-highlight' Plug 'puremourning/vimspector' "don't really work on windows os "Plug 'mphe/grayout.vim' "Plug 'neoclide/coc.nvim', {'do': { -> coc#util#install()}} Plug 'neoclide/coc.nvim', {'branch': 'release'} "can replaceYCM (more modern) "Plug 'neoclide/coc.nvim', {'do': 'yarn install --frozen-lockfile'} "Plug 'MaskRay/ccls', {'do': 'yarn install --frozen-lockfile'} "Plug 'wsdjeg/vim-todo' "dont work "Note: You may need to execute these commands in the "Developer Command Prompt for VS" "git clone https://github.com/llvm/llvm-project.git "cd llvm-project

"cmake -Hllvm -BRelease -G Ninja -DCMAKE_BUILD_TYPE=Release -DCMAKE_C_COMPILER=cl -DCMAKE_CXX_COMPILER=cl -DLLVM_TARGETS_TO_BUILD=X86 -DLLVM_ENABLE_PROJECTS=clang "ninja -C Release clangFormat clangFrontendTool clangIndex clangTooling clang

"# Download ccls "cd ccls "cmake -H. -BRelease -G Ninja -DCMAKE_BUILD_TYPE=Release -DCMAKE_CXX_COMPILER=clang-cl -DCMAKE_PREFIX_PATH="D:/llvm/Release;D:/llvm/Release/tools/clang;D:/llvm;D:/llvm/tools/clang" "ninja -C Release "Plug 'universal-ctags/ctags', {'do' : nmake -f mk_mvc.mak} Plug 'universal-ctags/ctags' Plug 'voldikss/vim-translator' "fzf for buffer "Plug 'junegunn/fzf', { 'do': { -> fzf#install() } } "Plug 'junegunn/fzf.vim' call plug#end()

chemzqm commented 3 years ago

You have to use :CocCommand workspace.showOutput