Results 347 comments of rayx

In fact, there is a corner case when `[[` is concealed I prefer > Anywhere in the file that doesn't have another referenceable/reference. As it does not require jumping to...

You may need to define your own signs table here. go.nvim already using diagnostic.config to setup signs, which comply with neovim 0.1x requirements. ```lua diagnostic = { -- set diagnostic...

no, it is not possible ATM. Unless, if you can invoke your prefered browser from command line and pass arguments to open a specific URL, I can help you set...

if I add a log ``` local code_action_req = function(_call_back_fn, context) local params = vim.lsp.util.make_range_params() log(params) params.context = context local line = params.range.start.line local callback = _call_back_fn(line, context.diagnostics) vim.lsp.buf_request(0, 'textDocument/codeAction',...

There is a setting `go = 'go', -- set to go1.18beta1 if necessary` You may want to do this `go = 'bazel', ` But, ATM the command have to be...

What is the LSP you using? Also do you see any error messages? `esc` keymap was handled by [guihua.lua](https://github.com/ray-x/guihua.lua) You can set `mode={'n', 'i', 'v'}` in your keymap. It should...

Error ON_ATTACH_ERROR should been fixed. I did not see the error you mentioned regarding code preview with lua_ls

Do you have a screen recording for me to reproduce this issue? Thanks!

There is a WIP navigator.lua branch `treesitter-main`, could you try that branch to see if the issue is fixed, thanks!

I have not seen this so far. What operation triggered this issue? Is it reproducible with the sample [init.lua](https://github.com/ray-x/navigator.lua/blob/master/playground/init.lua)