-- Tab completion --[[ vim.api.nvim_set_keymap("i", "", "coc#pum:visible() ? coc#pum#next(1) : v:lua.check_back_space() ? '' : coc#refresh()", {silent = true, expr = true, noremap = true}) vim.api.nvim_set_keymap("i", "", "pumvisible() ? '' : ''", {expr = true, noremap = true}) ]] vim.cmd( [[ inoremap \ coc#pum#visible() ? coc#pum#next(1): \ v:lua.check_back_space() ? "\" : \ coc#refresh() inoremap \ coc#pum#visible() ? coc#pum#prev(1): \ v:lua.check_back_space() ? "\" : \ coc#refresh() ]] ) vim.api.nvim_set_keymap("n", "cr", ":CocRestart", {silent = true, noremap = true}) -- Use to trigger completion vim.api.nvim_set_keymap("i", "", "coc#refresh()", {silent = true, expr = true, noremap = true}) -- Make auto-select the first completion item and notify coc.nvim to -- format on enter, could be remapped by other vim plugin vim.api.nvim_set_keymap("i", "", "pumvisible() ? coc#_select_confirm() : 'u=coc#on_enter()'", {silent = true, expr = true, noremap = true}) -- Use `[g` and `]g` to navigate diagnostics -- Use `:CocDiagnostics` to get all diagnostics of current buffer in location list. vim.api.nvim_set_keymap("n", "[g", "(coc-diagnostic-prev)", {silent = true}) vim.api.nvim_set_keymap("n", "]g", "(coc-diagnostic-next)", {silent = true}) -- GoTo code navigation. vim.api.nvim_set_keymap("n", "gd", ":Telescope coc definitions", {silent = true}) vim.api.nvim_set_keymap("n", "gy", ":Telescope coc type_definitions", {silent = true}) vim.api.nvim_set_keymap("n", "gi", ":Telescope coc implementations", {silent = true}) vim.api.nvim_set_keymap("n", "gr", ":Telescope coc references", {silent = true}) -- Use K to show documentation in preview window. vim.api.nvim_set_keymap("n", "K", ":call v:lua.show_documentation()", {silent = true, noremap = true}) -- Symbol renaming. vim.api.nvim_set_keymap("n", "rn", "(coc-rename)", {}) vim.api.nvim_set_keymap( "n", "d", ":CocCommand rust-analyzer.openDocs", { silent = true, noremap = true } ) -- Formatting selected code. -- vim.api.nvim_set_keymap("x", "f", "(coc-format-selected)", {}) -- vim.api.nvim_set_keymap("n", "f", "(coc-format-selected)", {}) -- Remap and for scroll float windows/popups. vim.api.nvim_set_keymap( "n", "", "coc#float#has_scroll() ? coc#float#scroll(1) : '\\'", {silent = true, nowait = true, expr = true, noremap = true} ) vim.api.nvim_set_keymap( "n", "", "coc#float#has_scroll() ? coc#float#scroll(0) : '\\'", {silent = true, nowait = true, expr = true, noremap = true} ) vim.api.nvim_set_keymap( "i", "", "coc#float#has_scroll() ? '\\=coc#float#scroll(1)\\' : '\\'", {silent = true, nowait = true, expr = true, noremap = true} ) vim.api.nvim_set_keymap( "i", "", "coc#float#has_scroll() ? '\\=coc#float#scroll(0)\\' : '\\'", {silent = true, nowait = true, expr = true, noremap = true} ) vim.api.nvim_set_keymap( "v", "", "coc#float#has_scroll() ? coc#float#scroll(1) : '\\'", {silent = true, nowait = true, expr = true, noremap = true} ) vim.api.nvim_set_keymap( "v", "", "coc#float#has_scroll() ? coc#float#scroll(0) : '\\'", {silent = true, nowait = true, expr = true, noremap = true} ) --[[ " Applying codeAction to the selected region. " Example: `aap` for current paragraph xmap a (coc-codeaction-selected) nmap a (coc-codeaction-selected) " Remap keys for applying codeAction to the current buffer. nmap ac (coc-codeaction) " Apply AutoFix to problem on the current line. nmap qf (coc-fix-current) " Map function and class text objects " NOTE: Requires 'textDocument.documentSymbol' support from the language server. xmap if (coc-funcobj-i) omap if (coc-funcobj-i) xmap af (coc-funcobj-a) omap af (coc-funcobj-a) xmap ic (coc-classobj-i) omap ic (coc-classobj-i) xmap ac (coc-classobj-a) omap ac (coc-classobj-a) " Use CTRL-S for selections ranges. " Requires 'textDocument/selectionRange' support of language server. nmap (coc-range-select) xmap (coc-range-select) " Add `:Format` command to format current buffer. command! -nargs=0 Format :call CocAction('format') " Add `:Fold` command to fold current buffer. command! -nargs=? Fold :call CocAction('fold', ) " 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 a :CocList diagnostics " Manage extensions. nnoremap e :CocList extensions " Show commands. nnoremap c :CocList commands " Find symbol of current document. nnoremap o :CocList outline " Search workspace symbols. nnoremap s :CocList -I symbols " Do default action for next item. nnoremap j :CocNext " Do default action for previous item. nnoremap k :CocPrev " Resume latest coc list. nnoremap p :CocListResume ]]