-
-
Notifications
You must be signed in to change notification settings - Fork 57
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Known issues, new features and breaking changes #1
Comments
Hi, Regards, |
Hi, Thanks for trying the plugin and report issue. Could you share your config? My minium config: set termguicolors
call plug#begin('~/.vim/plugged')
Plug 'neovim/nvim-lspconfig'
Plug 'nvim-treesitter/nvim-treesitter'
Plug 'ray-x/guihua.lua'
Plug 'ray-x/navigator.lua'
call plug#end()
lua <<EOF
local single = {"╭", "─", "╮", "│", "╯", "─", "╰", "│"}
require"navigator".setup({
debug = true,
width = 0.7,
border = single, -- "single"
})
EOF
set mouse=a
I am tracking neovim upstream. But I can not verify every operating system and setup. |
Hi, |
Please submit a separate issue. |
Your fix should work. Thanks! |
You may want to update the documentation to note that
If you don't have lua-dev installed |
This behaviour is incorrect. Should be fixed in faab21a |
Notes. { key = 'gr', func = require('navigator.reference').async_ref, ~~doc~~ = 'async_ref' } is moving to { key = 'gr', func = require('navigator.reference').async_ref, **desc** = 'async_ref' }, Also { key = "<Leader>re", func = "rename()" }, must move to { key = "<Leader>re", func = vim.lsp.buf.rename }, You can not shorten it to rename() There was some doc was not updated. |
breaking: |
Issue:
(Fixed)
(1) Open preview when split windows present may close the split window. It might be caused by an incorrect window id.(Fixed)
(2) Breaking changes: neovim/neovim#13664. (Fixed)(merged)
(3) gopls report error 'file://' not found in workspace. This is caused gopls is thinking floating windows with syntax on is a 'go' file. Fix is under testing. PR : neovim/nvim-lspconfig#944.(merged)
(4) Breaking changes neovim floating_windows. neovim changed its' API neovim/neovim#14649it has some side effects include the position of "apply action" floating window. Will working on them. (May 25)
Improvements
1) Backspace in search prompt2) Fully configurable3) PHP, dockerls supportPR welcome
The text was updated successfully, but these errors were encountered: