Results 347 comments of rayx

Hi, The list was not up-to-date. Thanks for trying the plugin and report issue. Could you share your config? My minium config: ```viml set termguicolors call plug#begin('~/.vim/plugged') Plug 'neovim/nvim-lspconfig' Plug...

Please submit a separate issue. I can not reproduce this issue. It would be great to attach your config and your operation system. `[d` should work out of box and...

This behaviour is incorrect. Should be fixed in https://github.com/ray-x/navigator.lua/commit/faab21a1a78bd62d9063b9589b76b05938785e47

![image](https://user-images.githubusercontent.com/1681295/176980849-c527764c-dd10-4530-9125-ae44fe03b2c1.png) Moving to new neovim API for key binding The new way to bind a key is ` { key = 'gr', func = require('navigator.reference').async_ref, desc = 'async_ref' }, `...

Notes. ```lua { key = 'gr', func = require('navigator.reference').async_ref, ~~doc~~ = 'async_ref' } ``` is moving to ```lua { key = 'gr', func = require('navigator.reference').async_ref, **desc** = 'async_ref' }, ```...

the clangd cmd setup : ``` cmd = { 'clangd', '--background-index', '--suggest-missing-includes', '--clang-tidy', '--header-insertion=iwyu', '--clang-tidy-checks=-*,llvm-*,clang-analyzer-*', '--cross-file-rename', }, ``` I do not see clangd used twice.

@chriztheanvill Could you check if it works for you? Looks good to me

it quit unfortunate that there is a breaking change You have to use this to override the mappings: ``` { key = 'gr', func = require('navigator.reference').reference, desc = 'reference' },...

Could you share your setup? You lsp log should be in ~/.cache/nvim/lsp.log For me I use the default setup for rust_analyzer(nightly) it works fine so far. Could you share your...