Back to Coc Nvim

README

README.md

0.0.82109.8 KB
Original Source
<p align="center"> <a href="https://www.vim.org/scripts/script.php?script_id=5779"> </a> <p align="center">Make your Vim/Neovim as smart as VS Code</p> <p align="center"> <a href="LICENSE.md"></a> <a href="https://github.com/neoclide/coc.nvim/actions"></a> <a href="https://codecov.io/gh/neoclide/coc.nvim"></a> <a href="doc/coc.txt"></a> <a href="https://deepwiki.com/neoclide/coc.nvim"></a> </p> </p>

Custom popup menu with snippet support

Why?

Quick Start

Make sure use Vim >= 9.0.0438 or Neovim >= 0.8.0.

Install nodejs >= 16.18.0:

bash
curl -sL install-node.vercel.app/lts | bash

For vim-plug users:

vim
" Use release branch (recommended)
Plug 'neoclide/coc.nvim', {'branch': 'release'}

" Or build from source code by using npm
Plug 'neoclide/coc.nvim', {'branch': 'master', 'do': 'npm ci'}

in your .vimrc or init.vim, then restart Vim and run :PlugInstall.

Checkout Install coc.nvim for more info.

You have to install coc extensions or configure language servers for LSP support.

Install extensions like this:

:CocInstall coc-json coc-tsserver

Or you can configure a language server in your coc-settings.json(open it using :CocConfig) like this:

json
{
  "languageserver": {
    "go": {
      "command": "gopls",
      "rootPatterns": ["go.mod"],
      "trace.server": "verbose",
      "filetypes": ["go"]
    }
  }
}

Checkout the wiki for more details:

Checkout :h coc-nvim for Vim interface.

Example Vim configuration

Configuration is required to make coc.nvim easier to work with, since it doesn't change your key-mappings or Vim options. This is done as much as possible to avoid conflict with your other plugins.

❗️Important: Some Vim plugins can change your key mappings. Please use command like:verbose imap <tab> to make sure that your keymap has taken effect.

vim
" https://raw.githubusercontent.com/neoclide/coc.nvim/master/doc/coc-example-config.vim

" 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

" Use tab for trigger completion with characters ahead and navigate
" NOTE: There's always complete item selected by default, you may want to enable
" no select by `"suggest.noselect": true` in your configuration file
" NOTE: Use command ':verbose imap <tab>' to make sure tab is not mapped by
" other plugin before putting this into your config
inoremap <silent><expr> <TAB>
      \ coc#pum#visible() ? coc#pum#next(1) :
      \ CheckBackspace() ? "\<Tab>" :
      \ coc#refresh()
inoremap <expr><S-TAB> coc#pum#visible() ? coc#pum#prev(1) : "\<C-h>"

" Make <CR> to accept selected completion item or notify coc.nvim to format
" <C-g>u breaks current undo, please make your own choice
inoremap <silent><expr> <CR> coc#pum#visible() ? coc#pum#confirm()
                              \: "\<C-g>u\<CR>\<c-r>=coc#on_enter()\<CR>"

function! CheckBackspace() abort
  let col = col('.') - 1
  return !col || getline('.')[col - 1]  =~# '\s'
endfunction

" Use <c-space> to trigger completion
if has('nvim')
  inoremap <silent><expr> <c-space> coc#refresh()
else
  inoremap <silent><expr> <c-@> coc#refresh()
endif

" Use `[g` and `]g` to navigate diagnostics
" Use `:CocDiagnostics` to get all diagnostics of current buffer in location list
nmap <silent><nowait> [g <Plug>(coc-diagnostic-prev)
nmap <silent><nowait> ]g <Plug>(coc-diagnostic-next)

" GoTo code navigation
nmap <silent><nowait> gd <Plug>(coc-definition)
nmap <silent><nowait> gy <Plug>(coc-type-definition)
nmap <silent><nowait> gi <Plug>(coc-implementation)
nmap <silent><nowait> gr <Plug>(coc-references)

" Use K to show documentation in preview window
nnoremap <silent> K :call ShowDocumentation()<CR>

function! ShowDocumentation()
  if CocAction('hasProvider', 'hover')
    call CocActionAsync('doHover')
  else
    call feedkeys('K', 'in')
  endif
endfunction

" Highlight the symbol and its references when holding the cursor
autocmd CursorHold * silent call CocActionAsync('highlight')

" Symbol renaming
nmap <leader>rn <Plug>(coc-rename)

" Formatting selected code
xmap <leader>f  <Plug>(coc-format-selected)
nmap <leader>f  <Plug>(coc-format-selected)

augroup mygroup
  autocmd!
  " Setup formatexpr specified filetype(s)
  autocmd FileType typescript,json setl formatexpr=CocAction('formatSelected')
augroup end

" Applying code actions to the selected code block
" Example: `<leader>aap` for current paragraph
xmap <leader>a  <Plug>(coc-codeaction-selected)
nmap <leader>a  <Plug>(coc-codeaction-selected)

" Remap keys for applying code actions at the cursor position
nmap <leader>ac  <Plug>(coc-codeaction-cursor)
" Remap keys for apply code actions affect whole buffer
nmap <leader>as  <Plug>(coc-codeaction-source)
" Apply the most preferred quickfix action to fix diagnostic on the current line
nmap <leader>qf  <Plug>(coc-fix-current)

" Remap keys for applying refactor code actions
nmap <silent> <leader>re <Plug>(coc-codeaction-refactor)
xmap <silent> <leader>r  <Plug>(coc-codeaction-refactor-selected)
nmap <silent> <leader>r  <Plug>(coc-codeaction-refactor-selected)

" Run the Code Lens action on the current line
nmap <leader>cl  <Plug>(coc-codelens-action)

" Map function and class text objects
" NOTE: Requires 'textDocument.documentSymbol' support from the language server
xmap if <Plug>(coc-funcobj-i)
omap if <Plug>(coc-funcobj-i)
xmap af <Plug>(coc-funcobj-a)
omap af <Plug>(coc-funcobj-a)
xmap ic <Plug>(coc-classobj-i)
omap ic <Plug>(coc-classobj-i)
xmap ac <Plug>(coc-classobj-a)
omap ac <Plug>(coc-classobj-a)

" Remap <C-f> and <C-b> to scroll float windows/popups
if has('nvim-0.4.0') || has('patch-8.2.0750')
  nnoremap <silent><nowait><expr> <C-f> coc#float#has_scroll() ? coc#float#scroll(1) : "\<C-f>"
  nnoremap <silent><nowait><expr> <C-b> coc#float#has_scroll() ? coc#float#scroll(0) : "\<C-b>"
  inoremap <silent><nowait><expr> <C-f> coc#float#has_scroll() ? "\<c-r>=coc#float#scroll(1)\<cr>" : "\<Right>"
  inoremap <silent><nowait><expr> <C-b> coc#float#has_scroll() ? "\<c-r>=coc#float#scroll(0)\<cr>" : "\<Left>"
  vnoremap <silent><nowait><expr> <C-f> coc#float#has_scroll() ? coc#float#scroll(1) : "\<C-f>"
  vnoremap <silent><nowait><expr> <C-b> coc#float#has_scroll() ? coc#float#scroll(0) : "\<C-b>"
endif

" Use CTRL-S for selections ranges
" Requires 'textDocument/selectionRange' support of language server
nmap <silent> <C-s> <Plug>(coc-range-select)
xmap <silent> <C-s> <Plug>(coc-range-select)

" Add `:Format` command to format current buffer
command! -nargs=0 Format :call CocActionAsync('format')

" Add `:Fold` command to fold current buffer
command! -nargs=? Fold :call     CocAction('fold', <f-args>)

" Add `:OR` command for organize imports of the current buffer
command! -nargs=0 OR   :call     CocActionAsync('runCommand', 'editor.action.organizeImport')

" Add (Neo)Vim's native statusline support
" NOTE: Please see `:h coc-status` for integrations with external plugins that
" provide custom statusline: lightline.vim, vim-airline
set statusline^=%{coc#status()}%{get(b:,'coc_current_function','')}

" Mappings for CoCList
" Show all diagnostics
nnoremap <silent><nowait> <space>a  :<C-u>CocList diagnostics<cr>
" Manage extensions
nnoremap <silent><nowait> <space>e  :<C-u>CocList extensions<cr>
" Show commands
nnoremap <silent><nowait> <space>c  :<C-u>CocList commands<cr>
" Find symbol of current document
nnoremap <silent><nowait> <space>o  :<C-u>CocList outline<cr>
" Search workspace symbols
nnoremap <silent><nowait> <space>s  :<C-u>CocList -I symbols<cr>
" Do default action for next item
nnoremap <silent><nowait> <space>j  :<C-u>CocNext<CR>
" Do default action for previous item
nnoremap <silent><nowait> <space>k  :<C-u>CocPrev<CR>
" Resume latest coc list
nnoremap <silent><nowait> <space>p  :<C-u>CocListResume<CR>

Example Lua configuration

NOTE: This only works in Neovim 0.7.0dev+.

lua
-- https://raw.githubusercontent.com/neoclide/coc.nvim/master/doc/coc-example-config.lua

-- Some servers have issues with backup files, see #649
vim.opt.backup = false
vim.opt.writebackup = false

-- Having longer updatetime (default is 4000 ms = 4s) leads to noticeable
-- delays and poor user experience
vim.opt.updatetime = 300

-- Always show the signcolumn, otherwise it would shift the text each time
-- diagnostics appeared/became resolved
vim.opt.signcolumn = "yes"

local keyset = vim.keymap.set
-- Autocomplete
function _G.check_back_space()
    local col = vim.fn.col('.') - 1
    return col == 0 or vim.fn.getline('.'):sub(col, col):match('%s') ~= nil
end

-- Use Tab for trigger completion with characters ahead and navigate
-- NOTE: There's always a completion item selected by default, you may want to enable
-- no select by setting `"suggest.noselect": true` in your configuration file
-- NOTE: Use command ':verbose imap <tab>' to make sure Tab is not mapped by
-- other plugins before putting this into your config
local opts = {silent = true, noremap = true, expr = true, replace_keycodes = false}
keyset("i", "<TAB>", 'coc#pum#visible() ? coc#pum#next(1) : v:lua.check_back_space() ? "<TAB>" : coc#refresh()', opts)
keyset("i", "<S-TAB>", [[coc#pum#visible() ? coc#pum#prev(1) : "\<C-h>"]], opts)

-- Make <CR> to accept selected completion item or notify coc.nvim to format
-- <C-g>u breaks current undo, please make your own choice
keyset("i", "<cr>", [[coc#pum#visible() ? coc#pum#confirm() : "\<C-g>u\<CR>\<c-r>=coc#on_enter()\<CR>"]], opts)

-- Use <c-j> to trigger snippets
keyset("i", "<c-j>", "<Plug>(coc-snippets-expand-jump)")
-- Use <c-space> to trigger completion
keyset("i", "<c-space>", "coc#refresh()", {silent = true, expr = true})

-- Use `[g` and `]g` to navigate diagnostics
-- Use `:CocDiagnostics` to get all diagnostics of current buffer in location list
keyset("n", "[g", "<Plug>(coc-diagnostic-prev)", {silent = true})
keyset("n", "]g", "<Plug>(coc-diagnostic-next)", {silent = true})

-- GoTo code navigation
keyset("n", "gd", "<Plug>(coc-definition)", {silent = true})
keyset("n", "gy", "<Plug>(coc-type-definition)", {silent = true})
keyset("n", "gi", "<Plug>(coc-implementation)", {silent = true})
keyset("n", "gr", "<Plug>(coc-references)", {silent = true})


-- Use K to show documentation in preview window
function _G.show_docs()
    local cw = vim.fn.expand('<cword>')
    if vim.fn.index({'vim', 'help'}, vim.bo.filetype) >= 0 then
        vim.api.nvim_command('h ' .. cw)
    elseif vim.api.nvim_eval('coc#rpc#ready()') then
        vim.fn.CocActionAsync('doHover')
    else
        vim.api.nvim_command('!' .. vim.o.keywordprg .. ' ' .. cw)
    end
end
keyset("n", "K", '<CMD>lua _G.show_docs()<CR>', {silent = true})


-- Highlight the symbol and its references on a CursorHold event(cursor is idle)
vim.api.nvim_create_augroup("CocGroup", {})
vim.api.nvim_create_autocmd("CursorHold", {
    group = "CocGroup",
    command = "silent call CocActionAsync('highlight')",
    desc = "Highlight symbol under cursor on CursorHold"
})


-- Symbol renaming
keyset("n", "<leader>rn", "<Plug>(coc-rename)", {silent = true})


-- Formatting selected code
keyset("x", "<leader>f", "<Plug>(coc-format-selected)", {silent = true})
keyset("n", "<leader>f", "<Plug>(coc-format-selected)", {silent = true})


-- Setup formatexpr specified filetype(s)
vim.api.nvim_create_autocmd("FileType", {
    group = "CocGroup",
    pattern = "typescript,json",
    command = "setl formatexpr=CocAction('formatSelected')",
    desc = "Setup formatexpr specified filetype(s)."
})

-- Apply codeAction to the selected region
-- Example: `<leader>aap` for current paragraph
local opts = {silent = true, nowait = true}
keyset("x", "<leader>a", "<Plug>(coc-codeaction-selected)", opts)
keyset("n", "<leader>a", "<Plug>(coc-codeaction-selected)", opts)

-- Remap keys for apply code actions at the cursor position.
keyset("n", "<leader>ac", "<Plug>(coc-codeaction-cursor)", opts)
-- Remap keys for apply source code actions for current file.
keyset("n", "<leader>as", "<Plug>(coc-codeaction-source)", opts)
-- Apply the most preferred quickfix action on the current line.
keyset("n", "<leader>qf", "<Plug>(coc-fix-current)", opts)

-- Remap keys for apply refactor code actions.
keyset("n", "<leader>re", "<Plug>(coc-codeaction-refactor)", { silent = true })
keyset("x", "<leader>r", "<Plug>(coc-codeaction-refactor-selected)", { silent = true })
keyset("n", "<leader>r", "<Plug>(coc-codeaction-refactor-selected)", { silent = true })

-- Run the Code Lens actions on the current line
keyset("n", "<leader>cl", "<Plug>(coc-codelens-action)", opts)


-- Map function and class text objects
-- NOTE: Requires 'textDocument.documentSymbol' support from the language server
keyset("x", "if", "<Plug>(coc-funcobj-i)", opts)
keyset("o", "if", "<Plug>(coc-funcobj-i)", opts)
keyset("x", "af", "<Plug>(coc-funcobj-a)", opts)
keyset("o", "af", "<Plug>(coc-funcobj-a)", opts)
keyset("x", "ic", "<Plug>(coc-classobj-i)", opts)
keyset("o", "ic", "<Plug>(coc-classobj-i)", opts)
keyset("x", "ac", "<Plug>(coc-classobj-a)", opts)
keyset("o", "ac", "<Plug>(coc-classobj-a)", opts)


-- Remap <C-f> and <C-b> to scroll float windows/popups
---@diagnostic disable-next-line: redefined-local
local opts = {silent = true, nowait = true, expr = true}
keyset("n", "<C-f>", 'coc#float#has_scroll() ? coc#float#scroll(1) : "<C-f>"', opts)
keyset("n", "<C-b>", 'coc#float#has_scroll() ? coc#float#scroll(0) : "<C-b>"', opts)
keyset("i", "<C-f>",
       'coc#float#has_scroll() ? "<c-r>=coc#float#scroll(1)<cr>" : "<Right>"', opts)
keyset("i", "<C-b>",
       'coc#float#has_scroll() ? "<c-r>=coc#float#scroll(0)<cr>" : "<Left>"', opts)
keyset("v", "<C-f>", 'coc#float#has_scroll() ? coc#float#scroll(1) : "<C-f>"', opts)
keyset("v", "<C-b>", 'coc#float#has_scroll() ? coc#float#scroll(0) : "<C-b>"', opts)


-- Use CTRL-S for selections ranges
-- Requires 'textDocument/selectionRange' support of language server
keyset("n", "<C-s>", "<Plug>(coc-range-select)", {silent = true})
keyset("x", "<C-s>", "<Plug>(coc-range-select)", {silent = true})


-- Add `:Format` command to format current buffer
vim.api.nvim_create_user_command("Format", "call CocAction('format')", {})

-- " Add `:Fold` command to fold current buffer
vim.api.nvim_create_user_command("Fold", "call CocAction('fold', <f-args>)", {nargs = '?'})

-- Add `:OR` command for organize imports of the current buffer
vim.api.nvim_create_user_command("OR", "call CocActionAsync('runCommand', 'editor.action.organizeImport')", {})

-- Add (Neo)Vim's native statusline support
-- NOTE: Please see `:h coc-status` for integrations with external plugins that
-- provide custom statusline: lightline.vim, vim-airline
vim.opt.statusline:prepend("%{coc#status()}%{get(b:,'coc_current_function','')}")

-- Mappings for CoCList
-- code actions and coc stuff
---@diagnostic disable-next-line: redefined-local
local opts = {silent = true, nowait = true}
-- Show all diagnostics
keyset("n", "<space>a", ":<C-u>CocList diagnostics<cr>", opts)
-- Manage extensions
keyset("n", "<space>e", ":<C-u>CocList extensions<cr>", opts)
-- Show commands
keyset("n", "<space>c", ":<C-u>CocList commands<cr>", opts)
-- Find symbol of current document
keyset("n", "<space>o", ":<C-u>CocList outline<cr>", opts)
-- Search workspace symbols
keyset("n", "<space>s", ":<C-u>CocList -I symbols<cr>", opts)
-- Do default action for next item
keyset("n", "<space>j", ":<C-u>CocNext<cr>", opts)
-- Do default action for previous item
keyset("n", "<space>k", ":<C-u>CocPrev<cr>", opts)
-- Resume latest coc list
keyset("n", "<space>p", ":<C-u>CocListResume<cr>", opts)

Articles

Troubleshooting

Try these steps if you experience problems with coc.nvim:

  • Ensure your Vim version >= 8.0 using :version
  • If a service failed to start, use :CocInfo or :checkhealth if you use Neovim
  • Checkout the log of coc.nvim with :CocOpenLog
  • If you have issues with the language server, it's recommended to checkout the language server output

Feedback

Backers

Become a backer and get your image on our README on GitHub with a link to your site.

<a href="https://opencollective.com/cocnvim/backer/0/website?requireActive=false" target="_blank"></a> <a href="https://opencollective.com/cocnvim/backer/1/website?requireActive=false" target="_blank"></a> <a href="https://opencollective.com/cocnvim/backer/2/website?requireActive=false" target="_blank"></a> <a href="https://opencollective.com/cocnvim/backer/3/website?requireActive=false" target="_blank"></a> <a href="https://opencollective.com/cocnvim/backer/4/website?requireActive=false" target="_blank"></a> <a href="https://opencollective.com/cocnvim/backer/5/website?requireActive=false" target="_blank"></a> <a href="https://opencollective.com/cocnvim/backer/6/website?requireActive=false" target="_blank"></a> <a href="https://opencollective.com/cocnvim/backer/7/website?requireActive=false" target="_blank"></a> <a href="https://opencollective.com/cocnvim/backer/8/website?requireActive=false" target="_blank"></a> <a href="https://opencollective.com/cocnvim/backer/9/website?requireActive=false" target="_blank"></a> <a href="https://opencollective.com/cocnvim/backer/10/website?requireActive=false" target="_blank"></a> <a href="https://opencollective.com/cocnvim/backer/11/website?requireActive=false" target="_blank"></a> <a href="https://opencollective.com/cocnvim/backer/12/website?requireActive=false" target="_blank"></a> <a href="https://opencollective.com/cocnvim/backer/13/website?requireActive=false" target="_blank"></a> <a href="https://opencollective.com/cocnvim/backer/14/website?requireActive=false" target="_blank"></a> <a href="https://opencollective.com/cocnvim/backer/15/website?requireActive=false" target="_blank"></a> <a href="https://opencollective.com/cocnvim/backer/16/website?requireActive=false" target="_blank"></a> <a href="https://opencollective.com/cocnvim/backer/17/website?requireActive=false" target="_blank"></a> <a href="https://opencollective.com/cocnvim/backer/18/website?requireActive=false" target="_blank"></a> <a href="https://opencollective.com/cocnvim/backer/19/website?requireActive=false" target="_blank"></a> <a href="https://opencollective.com/cocnvim/backer/20/website?requireActive=false" target="_blank"></a> <a href="https://opencollective.com/cocnvim/backer/21/website?requireActive=false" target="_blank"></a> <a href="https://opencollective.com/cocnvim/backer/22/website?requireActive=false" target="_blank"></a> <a href="https://opencollective.com/cocnvim/backer/23/website?requireActive=false" target="_blank"></a> <a href="https://opencollective.com/cocnvim/backer/24/website?requireActive=false" target="_blank"></a> <a href="https://opencollective.com/cocnvim/backer/25/website?requireActive=false" target="_blank"></a> <a href="https://opencollective.com/cocnvim/backer/26/website?requireActive=false" target="_blank"></a> <a href="https://opencollective.com/cocnvim/backer/27/website?requireActive=false" target="_blank"></a> <a href="https://opencollective.com/cocnvim/backer/28/website?requireActive=false" target="_blank"></a> <a href="https://opencollective.com/cocnvim/backer/29/website?requireActive=false" target="_blank"></a> <a href="https://opencollective.com/cocnvim/backer/30/website?requireActive=false" target="_blank"></a> <a href="https://opencollective.com/cocnvim/backer/31/website?requireActive=false" target="_blank"></a> <a href="https://opencollective.com/cocnvim/backer/32/website?requireActive=false" target="_blank"></a> <a href="https://opencollective.com/cocnvim/backer/33/website?requireActive=false" target="_blank"></a> <a href="https://opencollective.com/cocnvim/backer/34/website?requireActive=false" target="_blank"></a> <a href="https://opencollective.com/cocnvim/backer/35/website?requireActive=false" target="_blank"></a> <a href="https://opencollective.com/cocnvim/backer/36/website?requireActive=false" target="_blank"></a> <a href="https://opencollective.com/cocnvim/backer/37/website?requireActive=false" target="_blank"></a> <a href="https://opencollective.com/cocnvim/backer/38/website?requireActive=false" target="_blank"></a> <a href="https://opencollective.com/cocnvim/backer/39/website?requireActive=false" target="_blank"></a> <a href="https://opencollective.com/cocnvim/backer/40/website?requireActive=false" target="_blank"></a> <a href="https://opencollective.com/cocnvim/backer/41/website?requireActive=false" target="_blank"></a> <a href="https://opencollective.com/cocnvim/backer/42/website?requireActive=false" target="_blank"></a> <a href="https://opencollective.com/cocnvim/backer/43/website?requireActive=false" target="_blank"></a> <a href="https://opencollective.com/cocnvim/backer/44/website?requireActive=false" target="_blank"></a> <a href="https://opencollective.com/cocnvim/backer/45/website?requireActive=false" target="_blank"></a> <a href="https://opencollective.com/cocnvim/backer/46/website?requireActive=false" target="_blank"></a> <a href="https://opencollective.com/cocnvim/backer/47/website?requireActive=false" target="_blank"></a> <a href="https://opencollective.com/cocnvim/backer/48/website?requireActive=false" target="_blank"></a> <a href="https://opencollective.com/cocnvim/backer/49/website?requireActive=false" target="_blank"></a>

<a href="https://opencollective.com/cocnvim#backer" target="_blank"></a>

Contributors

<!-- ALL-CONTRIBUTORS-LIST:START - Do not remove or modify this section --> <!-- prettier-ignore-start --> <!-- markdownlint-disable --> <table> <tbody> <tr> <td align="center" valign="top" width="14.28%"><a href="https://github.com/chemzqm"> <sub><b>Qiming zhao</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=chemzqm" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://fann.im/"> <sub><b>Heyward Fann</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=fannheyward" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/weirongxu"> <sub><b>Raidou</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=weirongxu" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/kevinhwang91"> <sub><b>kevinhwang91</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=kevinhwang91" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="http://yuuko.cn/"> <sub><b>年糕小豆汀</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=iamcco" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/Avi-D-coder"> <sub><b>Avi Dessauer</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=Avi-D-coder" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/voldikss"> <sub><b>ζœ€δΈŠε·</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=voldikss" title="Code">πŸ’»</a></td> </tr> <tr> <td align="center" valign="top" width="14.28%"><a href="https://www.microsoft.com/en-us/research/people/yatli/"> <sub><b>Yatao Li</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=yatli" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/xiyaowong"> <sub><b>wongxy</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=xiyaowong" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/sam-mccall"> <sub><b>Sam McCall</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=sam-mccall" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://samroeca.com/pages/about.html#about"> <sub><b>Samuel Roeca</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=pappasam" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/amiralies"> <sub><b>Amirali Esmaeili</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=amiralies" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://bit.ly/3cLKGE4"> <sub><b>Jack Rowlingson</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=jrowlingson" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/tomtomjhj"> <sub><b>Jaehwang Jung</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=tomtomjhj" title="Code">πŸ’»</a></td> </tr> <tr> <td align="center" valign="top" width="14.28%"><a href="https://github.com/antoinemadec"> <sub><b>Antoine</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=antoinemadec" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/cosminadrianpopescu"> <sub><b>Cosmin Popescu</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=cosminadrianpopescu" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://ducnx.com/"> <sub><b>Duc Nghiem Xuan</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=xuanduc987" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://nosubstance.me/"> <sub><b>Francisco Lopes</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=oblitum" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/daquexian"> <sub><b>daquexian</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=daquexian" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/apps/dependabot"> <sub><b>dependabot[bot]</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=dependabot[bot]" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/apps/greenkeeper"> <sub><b>greenkeeper[bot]</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=greenkeeper[bot]" title="Code">πŸ’»</a></td> </tr> <tr> <td align="center" valign="top" width="14.28%"><a href="https://chris-kipp.io/"> <sub><b>Chris Kipp</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=ckipp01" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://dmitmel.github.io/"> <sub><b>Dmytro Meleshko</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=dmitmel" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/kirillbobyrev"> <sub><b>Kirill Bobyrev</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=kirillbobyrev" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/gbcreation"> <sub><b>Gontran Baerts</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=gbcreation" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://andys8.de/"> <sub><b>Andy</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=andys8" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://www.alexcj96.com/"> <sub><b>Cheng JIANG</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=GopherJ" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/cpearce-py"> <sub><b>Corin</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=cpearce-py" title="Code">πŸ’»</a></td> </tr> <tr> <td align="center" valign="top" width="14.28%"><a href="https://github.com/wodesuck"> <sub><b>Daniel Zhang</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=wodesuck" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/Ferdi265"> <sub><b>Ferdinand Bachmann</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=Ferdi265" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://goushi.me/"> <sub><b>Guangqing Chen</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=gou4shi1" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="http://jademeskill.com/"> <sub><b>Jade Meskill</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=iamruinous" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/jpoppe"> <sub><b>Jasper Poppe</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=jpoppe" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/jean"> <sub><b>Jean Jordaan</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=jean" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://xuann.wang/"> <sub><b>Kid</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=kidonng" title="Code">πŸ’»</a></td> </tr> <tr> <td align="center" valign="top" width="14.28%"><a href="https://github.com/Kavantix"> <sub><b>Pieter van Loon</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=Kavantix" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/rliebz"> <sub><b>Robert Liebowitz</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=rliebz" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://megalithic.io/"> <sub><b>Seth Messer</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=megalithic" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/UncleBill"> <sub><b>UncleBill</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=UncleBill" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="http://zsaber.com/"> <sub><b>ZERO</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=ZSaberLv0" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://fsouza.blog/"> <sub><b>fsouza</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=fsouza" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://onichandame.com/"> <sub><b>XiaoZhang</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=onichandame" title="Code">πŸ’»</a></td> </tr> <tr> <td align="center" valign="top" width="14.28%"><a href="https://github.com/whyreal"> <sub><b>whyreal</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=whyreal" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/yehuohan"> <sub><b>yehuohan</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=yehuohan" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="http://www.bakudan.farm/"> <sub><b>バクダンくん</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=Bakudankun" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://blog.gopherhub.org/"> <sub><b>Raphael</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=glepnir" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://tbodt.com/"> <sub><b>tbodt</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=tbodt" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://aaronmcdaid.github.io/"> <sub><b>Aaron McDaid</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=aaronmcdaid" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/versi786"> <sub><b>Aasif Versi</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=versi786" title="Code">πŸ’»</a></td> </tr> <tr> <td align="center" valign="top" width="14.28%"><a href="https://github.com/abnerf"> <sub><b>Abner Silva</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=abnerf" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="http://sheerun.net/"> <sub><b>Adam Stankiewicz</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=sheerun" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://wirow.io/"> <sub><b>Adamansky Anton</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=adamansky" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://gabri.me/"> <sub><b>Ahmed El Gabri</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=ahmedelgabri" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="http://theg4sh.ru/"> <sub><b>Alexandr Kondratev</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=theg4sh" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/andrewkshim"> <sub><b>Andrew Shim</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=andrewkshim" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="http://andylindeman.com/"> <sub><b>Andy Lindeman</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=alindeman" title="Code">πŸ’»</a></td> </tr> <tr> <td align="center" valign="top" width="14.28%"><a href="https://github.com/Augustin82"> <sub><b>Augustin</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=Augustin82" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://bananium.fr/"> <sub><b>Bastien Orivel</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=Eijebong" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/ayroblu"> <sub><b>Ben Lu</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=ayroblu" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/vantreeseba"> <sub><b>Ben</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=vantreeseba" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/bmon"> <sub><b>Brendan Roy</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=bmon" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/brianembry"> <sub><b>brianembry</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=brianembry" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://keybase.io/bri_"> <sub><b>br</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=b-" title="Code">πŸ’»</a></td> </tr> <tr> <td align="center" valign="top" width="14.28%"><a href="https://github.com/casonadams"> <sub><b>Cason Adams</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=casonadams" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/y9c"> <sub><b>Chang Y</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=y9c" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://yous.be/"> <sub><b>Chayoung You</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=yous" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/chenlijun99"> <sub><b>Chen Lijun</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=chenlijun99" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/beeender"> <sub><b>Chen Mulong</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=beeender" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="http://weyl.io/"> <sub><b>Chris Weyl</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=rsrchboy" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/dezza"> <sub><b>dezza</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=dezza" title="Code">πŸ’»</a></td> </tr> <tr> <td align="center" valign="top" width="14.28%"><a href="https://github.com/ceedubs"> <sub><b>Cody Allen</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=ceedubs" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://www.25.wf/"> <sub><b>Damien Rajon</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=pyrho" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/daern91"> <sub><b>Daniel Eriksson</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=daern91" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/danjenson"> <sub><b>Daniel Jenson</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=danjenson" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/davidmh"> <sub><b>David Mejorado</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=davidmh" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/pderichai"> <sub><b>Deric Pang</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=pderichai" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://www.dingtao.org/blog"> <sub><b>Ding Tao</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=miyatsu" title="Code">πŸ’»</a></td> </tr> <tr> <td align="center" valign="top" width="14.28%"><a href="https://github.com/doronbehar"> <sub><b>Doron Behar</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=doronbehar" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/kovetskiy"> <sub><b>Egor Kovetskiy</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=kovetskiy" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/elkowar"> <sub><b>ElKowar</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=elkowar" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/demelev"> <sub><b>Emeliov Dmitrii</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=demelev" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/sawmurai"> <sub><b>Fabian Becker</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=sawmurai" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/FallenWarrior2k"> <sub><b>FallenWarrior2k</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=FallenWarrior2k" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://fnune.com/"> <sub><b>Fausto NΓΊΓ±ez Alberro</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=fnune" title="Code">πŸ’»</a></td> </tr> <tr> <td align="center" valign="top" width="14.28%"><a href="https://github.com/FelipeCRamos"> <sub><b>Felipe Ramos</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=FelipeCRamos" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/frbor"> <sub><b>Fredrik Borg</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=frbor" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="http://www.gavinsim.co.uk/"> <sub><b>Gavin Sim</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=gavsim" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://fahn.co/"> <sub><b>Gibson Fahnestock</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=gibfahn" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/giovannigiordano"> <sub><b>Giovanni Giordano</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=giovannigiordano" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/qubbit"> <sub><b>Gopal Adhikari</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=qubbit" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/hanh090"> <sub><b>Hanh Le</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=hanh090" title="Code">πŸ’»</a></td> </tr> <tr> <td align="center" valign="top" width="14.28%"><a href="https://github.com/hedyhli"> <sub><b>hedy</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=hedyhli" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://www.hendriklammers.com/"> <sub><b>Hendrik Lammers</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=hendriklammers" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/henrybarreto"> <sub><b>Henry Barreto</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=henrybarreto" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://hugo.barrera.io/"> <sub><b>Hugo</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=WhyNotHugo" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/jackieli-tes"> <sub><b>Jackie Li</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=jackieli-tes" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/MrQubo"> <sub><b>Jakub Nowak</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=MrQubo" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/euoia"> <sub><b>James Pickard</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=euoia" title="Code">πŸ’»</a></td> </tr> <tr> <td align="center" valign="top" width="14.28%"><a href="https://github.com/jsfaint"> <sub><b>Jia Sui</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=jsfaint" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/expipiplus1"> <sub><b>Ellie Hermaszewska</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=expipiplus1" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://cincodenada.com/"> <sub><b>Joel Bradshaw</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=cincodenada" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/irizwaririz"> <sub><b>John Carlo Roberto</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=irizwaririz" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/Jomik"> <sub><b>Jonas Holst Damtoft</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=Jomik" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="http://inlehmansterms.net/"> <sub><b>Jonathan Lehman</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=jdlehman" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://joosep.xyz/"> <sub><b>Joosep Alviste</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=JoosepAlviste" title="Code">πŸ’»</a></td> </tr> <tr> <td align="center" valign="top" width="14.28%"><a href="https://github.com/josa42"> <sub><b>Josa Gesell</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=josa42" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://jawa.dev/"> <sub><b>Joshua Rubin</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=joshuarubin" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/perrin4869"> <sub><b>Julian Grinblat</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=perrin4869" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://valentjn.github.io/"> <sub><b>Julian Valentin</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=valentjn" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://kabbamine.github.io/"> <sub><b>KabbAmine</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=KabbAmine" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://moncargo.io/"> <sub><b>Kay Gosho</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=acro5piano" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://kennyvh.com/"> <sub><b>Kenny Huynh</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=hkennyv" title="Code">πŸ’»</a></td> </tr> <tr> <td align="center" valign="top" width="14.28%"><a href="https://github.com/kevinrambaud"> <sub><b>Kevin Rambaud</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=kevinrambaud" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/kiancross"> <sub><b>Kian Cross</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=kiancross" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://ko-fi.com/kristijanhusak"> <sub><b>Kristijan Husak</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=kristijanhusak" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/NullVoxPopuli"> <sub><b>NullVoxPopuli</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=NullVoxPopuli" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/lassepe"> <sub><b>Lasse Peters</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=lassepe" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/Linerre"> <sub><b>Noel Errenil</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=Linerre" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/LinArcX"> <sub><b>LinArcX</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=LinArcX" title="Code">πŸ’»</a></td> </tr> <tr> <td align="center" valign="top" width="14.28%"><a href="https://paypal.me/liuchengxu"> <sub><b>Liu-Cheng Xu</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=liuchengxu" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://malloc.me/"> <sub><b>Marc</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=foxtrot" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/mgaw"> <sub><b>Marius Gawrisch</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=mgaw" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="http://www.markhz.com/"> <sub><b>Mark Hintz</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=mhintz" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/MatElGran"> <sub><b>Mathieu Le Tiec</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=MatElGran" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://matt-w.net/"> <sub><b>Matt White</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=matt-fff" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/ml-evs"> <sub><b>Matthew Evans</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=ml-evs" title="Code">πŸ’»</a></td> </tr> <tr> <td align="center" valign="top" width="14.28%"><a href="https://github.com/Me1onRind"> <sub><b>Me1onRind</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=Me1onRind" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/Qyriad"> <sub><b>Qyriad</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=Qyriad" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://leo.is-a.dev/"> <sub><b>Narcis B.</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=leonardssh" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/Neur1n"> <sub><b>Neur1n</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=Neur1n" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/nicoder"> <sub><b>Nicolas Dermine</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=nicoder" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/NoahTheDuke"> <sub><b>Noah</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=NoahTheDuke" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/IndexXuan"> <sub><b>PENG Rui</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=IndexXuan" title="Code">πŸ’»</a></td> </tr> <tr> <td align="center" valign="top" width="14.28%"><a href="https://liaoph.com/"> <sub><b>Paco</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=paco0x" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/peng1999"> <sub><b>Peng Guanwen</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=peng1999" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://www.twitter.com/badeip"> <sub><b>Petter Wahlman</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=ilAYAli" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/pvonmoradi"> <sub><b>Pooya Moradi</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=pvonmoradi" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/QuadeMorrison"> <sub><b>Quade Morrison</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=QuadeMorrison" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/vogler"> <sub><b>Ralf Vogler</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=vogler" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/crccw"> <sub><b>Ran Chen</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=crccw" title="Code">πŸ’»</a></td> </tr> <tr> <td align="center" valign="top" width="14.28%"><a href="https://bigardone.dev/"> <sub><b>Ricardo GarcΓ­a Vega</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=bigardone" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/nomasprime"> <sub><b>Rick Jones</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=nomasprime" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/rschristian"> <sub><b>Ryan Christian</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=rschristian" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="http://salo.so/"> <sub><b>Salo</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=winterbesos" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/Hazelfire"> <sub><b>Sam Nolan</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=Hazelfire" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/rickysaurav"> <sub><b>Saurav</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=rickysaurav" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/smackesey"> <sub><b>Sean Mackesey</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=smackesey" title="Code">πŸ’»</a></td> </tr> <tr> <td align="center" valign="top" width="14.28%"><a href="https://github.com/sheeldotme"> <sub><b>Sheel Patel</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=sheeldotme" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/solomonwzs"> <sub><b>Solomon Ng</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=solomonwzs" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/kadimisetty"> <sub><b>Sri Kadimisetty</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=kadimisetty" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/stephenprater"> <sub><b>Stephen Prater</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=stephenprater" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://kibs.dk/"> <sub><b>Sune Kibsgaard</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=kibs" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/Aquaakuma"> <sub><b>Aquaakuma</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=Aquaakuma" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/coil398"> <sub><b>Takumi Kawase</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=coil398" title="Code">πŸ’»</a></td> </tr> <tr> <td align="center" valign="top" width="14.28%"><a href="https://github.com/theblobscp"> <sub><b>The Blob SCP</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=theblobscp" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/przepompownia"> <sub><b>Tomasz N</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=przepompownia" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/gasuketsu"> <sub><b>Tomoyuki Harada</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=gasuketsu" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/tonyfettes"> <sub><b>Tony Fettes</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=tonyfettes" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://www.git-pull.com/"> <sub><b>Tony Narlock</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=tony" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://blog.wwwjfy.net/"> <sub><b>Tony Wang</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=wwwjfy" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/Varal7"> <sub><b>Victor Quach</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=Varal7" title="Code">πŸ’»</a></td> </tr> <tr> <td align="center" valign="top" width="14.28%"><a href="https://github.com/whisperity"> <sub><b>Whisperity</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=whisperity" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/willtrnr"> <sub><b>William Turner</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=willtrnr" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://drafts.damnever.com/"> <sub><b>Xiaochao Dong</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=damnever" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/hyhugh"> <sub><b>Hugh Hou</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=hyhugh" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/jackielii"> <sub><b>Jackie Li</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=jackielii" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/TheConfuZzledDude"> <sub><b>Zachary Freed</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=TheConfuZzledDude" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/akiyosi"> <sub><b>akiyosi</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=akiyosi" title="Code">πŸ’»</a></td> </tr> <tr> <td align="center" valign="top" width="14.28%"><a href="https://github.com/alexjg"> <sub><b>alexjg</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=alexjg" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/aste4"> <sub><b>aste4</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=aste4" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/clyfish"> <sub><b>clyfish</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=clyfish" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/dev7ba"> <sub><b>dev7ba</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=dev7ba" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/diartyz"> <sub><b>diartyz</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=diartyz" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/doza-daniel"> <sub><b>doza-daniel</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=doza-daniel" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/equal-l2"> <sub><b>equal-l2</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=equal-l2" title="Code">πŸ’»</a></td> </tr> <tr> <td align="center" valign="top" width="14.28%"><a href="https://github.com/FongHou"> <sub><b>fong</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=FongHou" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://blog.hexuhua.vercel.app/"> <sub><b>hexh</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=hexh250786313" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/hhiraba"> <sub><b>hhiraba</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=hhiraba" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/ic-768"> <sub><b>ic-768</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=ic-768" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/javiertury"> <sub><b>javiertury</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=javiertury" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/seiyeah78"> <sub><b>karasu</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=seiyeah78" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/kevineato"> <sub><b>kevineato</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=kevineato" title="Code">πŸ’»</a></td> </tr> <tr> <td align="center" valign="top" width="14.28%"><a href="https://github.com/m4c0"> <sub><b>Eduardo Costa</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=m4c0" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/micchy326"> <sub><b>micchy326</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=micchy326" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://keybase.io/midchildan"> <sub><b>midchildan</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=midchildan" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/minefuto"> <sub><b>minefuto</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=minefuto" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://twitter.com/robokomy"> <sub><b>miyanokomiya</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=miyanokomiya" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/miyaviee"> <sub><b>miyaviee</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=miyaviee" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/monkoose"> <sub><b>monkoose</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=monkoose" title="Code">πŸ’»</a> <a href="https://github.com/neoclide/coc.nvim/issues?q=author%3Amonkoose" title="Bug reports">πŸ›</a></td> </tr> <tr> <td align="center" valign="top" width="14.28%"><a href="https://github.com/mujx"> <sub><b>mujx</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=mujx" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/mvilim"> <sub><b>mvilim</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=mvilim" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://naruaway.com/"> <sub><b>naruaway</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=naruaway" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/piersy"> <sub><b>piersy</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=piersy" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/ryantig"> <sub><b>ryantig</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=ryantig" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://catcat.cc/"> <sub><b>rydesun</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=rydesun" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/sc00ter"> <sub><b>sc00ter</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=sc00ter" title="Code">πŸ’»</a></td> </tr> <tr> <td align="center" valign="top" width="14.28%"><a href="https://github.com/smhc"> <sub><b>smhc</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=smhc" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/stkaplan"> <sub><b>Sam Kaplan</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=stkaplan" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/tasuten"> <sub><b>tasuten</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=tasuten" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="http://todesking.com/"> <sub><b>todesking</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=todesking" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/typicode"> <sub><b>typicode</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=typicode" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://limingfei56.github.io/"> <sub><b>李鸣飞</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=LiMingFei56" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://bandism.net/"> <sub><b>Ikko Ashimine</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=eltociear" title="Documentation">πŸ“–</a></td> </tr> <tr> <td align="center" valign="top" width="14.28%"><a href="https://github.com/rammiah"> <sub><b>Rammiah</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/issues?q=author%3Arammiah" title="Bug reports">πŸ›</a></td> <td align="center" valign="top" width="14.28%"><a href="https://keybase.io/lambdalisue"> <sub><b>Alisue</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/issues?q=author%3Alambdalisue" title="Bug reports">πŸ›</a></td> <td align="center" valign="top" width="14.28%"><a href="http://bigshans.github.io"> <sub><b>bigshans</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=bigshans" title="Documentation">πŸ“–</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/rob-3"> <sub><b>Robert Boyd III</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/issues?q=author%3Arob-3" title="Bug reports">πŸ›</a></td> <td align="center" valign="top" width="14.28%"><a href="https://creasty.com"> <sub><b>Yuki Iwanaga</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=creasty" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://www.dosk.win/"> <sub><b>SpringHack</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/issues?q=author%3Aspringhack" title="Bug reports">πŸ›</a></td> <td align="center" valign="top" width="14.28%"><a href="http://git.lmburns.com"> <sub><b>Lucas Burns</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=lmburns" title="Documentation">πŸ“–</a></td> </tr> <tr> <td align="center" valign="top" width="14.28%"><a href="http://qiqi.boy.im"> <sub><b>qiqiboy</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=qiqiboy" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/timsu92"> <sub><b>timsu92</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=timsu92" title="Documentation">πŸ“–</a></td> <td align="center" valign="top" width="14.28%"><a href="https://sartak.org"> <sub><b>Shawn M Moore</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=sartak" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/aauren"> <sub><b>Aaron U'Ren</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/issues?q=author%3Aaauren" title="Bug reports">πŸ›</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/SirCharlieMars"> <sub><b>SeniorMars</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=SirCharlieMars" title="Documentation">πŸ“–</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/CollieIsCute"> <sub><b>η‰§ηΎŠηŠ¬ηœŸQ</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=CollieIsCute" title="Documentation">πŸ“–</a></td> <td align="center" valign="top" width="14.28%"><a href="http://geraldspreer.com"> <sub><b>geraldspreer</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=geraldspreer" title="Documentation">πŸ“–</a></td> </tr> <tr> <td align="center" valign="top" width="14.28%"><a href="http://3ximus.github.io/cv"> <sub><b>Fabio</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=3ximus" title="Documentation">πŸ“–</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/skysky97"> <sub><b>Li Yunting</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/issues?q=author%3Askysky97" title="Bug reports">πŸ›</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/LebJe"> <sub><b>Jeff L.</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=LebJe" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://hachyderm.io/@mcmire"> <sub><b>Elliot Winkler</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=mcmire" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="http://www.lebstertm.com"> <sub><b>Svetlozar Iliev</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=asmodeus812" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="http://43081j.com/"> <sub><b>James Garbutt</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=43081j" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/Kaiser-Yang"> <sub><b>Qingzhou Yue</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=Kaiser-Yang" title="Code">πŸ’»</a></td> </tr> <tr> <td align="center" valign="top" width="14.28%"><a href="https://www.linkedin.com/in/de-vries-maarten/"> <sub><b>Maarten de Vries</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=de-vri-es" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/A4-Tacks"> <sub><b>A4-Tacks</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=A4-Tacks" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/zhixiao-zhang"> <sub><b>forceofsystem</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=zhixiao-zhang" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/statiolake"> <sub><b>lake</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=statiolake" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://www.davidosomething.com/"> <sub><b>David O'Trakoun</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=davidosomething" title="Documentation">πŸ“–</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/aispeaking"> <sub><b>aispeaking</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=aispeaking" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/cclauss"> <sub><b>Christian Clauss</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=cclauss" title="Code">πŸ’»</a></td> </tr> <tr> <td align="center" valign="top" width="14.28%"><a href="http://mehalter.com"> <sub><b>Micah Halter</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=mehalter" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/cridemichel"> <sub><b>Cristiano De Michele</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=cridemichel" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://yongjie.codes/"> <sub><b>Yong Jie</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=YongJieYongJie" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="http://eight45.net"> <sub><b>Kira Oakley</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=hackergrrl" title="Documentation">πŸ“–</a></td> <td align="center" valign="top" width="14.28%"><a href="https://merwan.github.io"> <sub><b>Merouane Atig</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=merwan" title="Documentation">πŸ“–</a></td> <td align="center" valign="top" width="14.28%"><a href="https://gera2ld.space/"> <sub><b>Gerald</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=gera2ld" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://nicklas.sedlock.xyz/"> <sub><b>Nicklas Sedlock</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=V-Mann-Nick" title="Code">πŸ’»</a></td> </tr> <tr> <td align="center" valign="top" width="14.28%"><a href="https://github.com/tcx4c70"> <sub><b>Adam Tao</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=tcx4c70" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/itsf4llofstars"> <sub><b>itsf4llofstars</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=itsf4llofstars" title="Documentation">πŸ“–</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/brainwo"> <sub><b>Brian Wo</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=brainwo" title="Documentation">πŸ“–</a></td> <td align="center" valign="top" width="14.28%"><a href="https://wsdjeg.net/"> <sub><b>Eric Wong</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=wsdjeg" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/oxalica"> <sub><b>oxalica</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=oxalica" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/laktak"> <sub><b>Christian Zangl</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=laktak" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/zoumi"> <sub><b>zoumi</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=zoumi" title="Code">πŸ’»</a></td> </tr> <tr> <td align="center" valign="top" width="14.28%"><a href="https://github.com/atitcreate"> <sub><b>atitcreate</b></sub></a> <a href="https://github.com/neoclide/coc.nvim/commits?author=atitcreate" title="Code">πŸ’»</a></td> </tr> </tbody> </table> <!-- markdownlint-restore --> <!-- prettier-ignore-end --> <!-- ALL-CONTRIBUTORS-LIST:END --> <!-- prettier-ignore-start --> <!-- markdownlint-disable --> <!-- markdownlint-restore --> <!-- prettier-ignore-end --> <!-- ALL-CONTRIBUTORS-LIST:END -->

This project follows the all-contributors specification. Contributions of any kind are welcome!

License

Anti 996