-
Notifications
You must be signed in to change notification settings - Fork 2.1k
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
Neovim 0.11 migration #3659
base: master
Are you sure you want to change the base?
Neovim 0.11 migration #3659
Conversation
I think we should skip to Phase 2. The old configs have already been quasi-frozen for a few months. Now it's time to formalize that. So I suggest:
|
Ok, that's probably better. What about descriptions? Should I annotate the config table with them? |
Descriptions should probably be luadoc comments at the top of the config. Then we'll need to update the generator in this repo to read those. WDYT @lewis6991 ? |
sgtm |
UpdateNow I'll port the LSPs that I usually use first, just because I can test them more easily. I added the For the LuaDoc: should I annotate a |
Sorry, I just remembered something:
The point of the wrapper was to not have to create configs under If that's possible, then that's still the least-risk approach to start with. |
lua/lspconfig/util.lua
Outdated
---@field opts table? | ||
|
||
--- @param commands Command[] | ||
function M.register_commands(commands) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
function M.register_commands(commands) | |
function M.def_commands(commands) |
I didn't find a feasible approach to it, so I figured we could just port the configs. In the meanwhile I baked in some modifications that wuold fit the new configuration, but I'm more than happy to break things down in separate PRs. If you prefer a more conservative approach, I could also remove the new I also thought would be smart to use builtin neovim 0.11 in the migrated configs, because those would be used obviously just in neovim>=0.11, but I could just make a really simple migration with little to no effect to the current configurations. This was also meant to use less functions from |
if a wrapper that works automatically isn't possible, then yes we should skip to Phase 2 and start migrating configs. and the old configs are frozen.
why is there a new Command interface? where did that requirement come from? |
Just because the old Commands had a weird syntax which required more complicated parsing (why is there a opt_alias table?). I get it was probably for compatibility issues, but now we can change things more freely. That being said, I could revert it no problem. For context, I'm referring to this (probably) over complicated function: This was my suggested solution: |
The The entire purpose of this exercise is to stop depending on framework code in lspconfig, not to replace it with a new flavor. If the new configs want to have "commands", then for now they will need to hardcode calls to Or else figure out a way to do Phase 1 only, and pause Phase 2 until we have a proper answer for the |
Fine with me to hardcode What about These types of things are required in order to port more complicated configs (e.g. |
Update
Needs #3666 Started to port in alphabetical order. Skipping the ones with |
Probably LSPs which {
...
root_dir = function (bufnr, done_callback)
local root = -- compute root
done_callback(root or vim.fs.dirname(vim.api.nvim_buf_get_name(bufnr))) -- either
-- done_callback(root or vim.fn.getcwd()) -- or
end,
... |
@justinmk Sorry to bother. The "easier" migration is done, now there are just the LSPs which have Is it feasibile to move What's the suggested way to handle I had an idea which consisted of:
Which shouldn't start the server given that EDIT: Probably this PR could wait until those features are sorted out and implemented in neovim. |
There are just 31 LSPs which still need to be ported. If we decide to wait, we could temporarily port these configs as empty files which tells the user to use |
The version of |
Just to have a reminder, these are the LSPs which rely on
These are the ones which have
|
Seems pretty reasonable to me. Should I also update the README and/or the docs? |
Co-authored-by: Aliou Diallo <[email protected]>
The README is now updated, but what about the docs? Probably the docgen and templates should be updated this new way of configuring servers is completely stable. So should I flag these new features as beta or something? |
Hey! I've been using this branch for the past few days and noticed an unexpected side effect to this change:
In my config, I have the following: vim.lsp.config('*', {
root_markers = { '.git', '.root' },
on_attach = function(client, bufnr)
-- Configure mappings for the current buffer based on the method the server supports.
maps.on_attach(client, bufnr)
vim.notify('Attached to ' .. client.name, vim.log.levels.DEBUG)
end,
} --[[@as vim.lsp.Config]]) The This also occurs if I configure the server directly using I think this is because of the order files are present in the rtp, with lspconfig being after my config? In any case, since I don't use the commands created, I added this to return {
on_attach = function(client, bufnr)
local config_on_attach = vim.lsp.config['*'].on_attach
if not config_on_attach then return end
config_on_attach(client, bufnr)
end
} Is this how I am supposed to handle this or is there another way? Should there be a mention of this edge case in the readme? |
Based on #3494.
This PR introduces the minimal effort to port every configuration to neovim 0.11.The
default_configuration
field has most of the times everything that's needed, but there are come exceptions that where changed:commands
field became raw calls tovim.api.nvim_buf_create_user_command
insideon_attach
.root_dir
became:root_markers
whenever the file list was simple didn't need to mach*
vim.lsp.Config
'sroot_dir
.on_config_change
becamebefore_init
. I don't actually know if this is the correct approach, but looking around the documentation ofnvim-lspconfig
a saw that it was defined as the function that gets called as soon as the config haveroot_dir
, and so I thoughtbefore_init
might be the closest alternative.docs.description
became a luadoc annotation prefaced by@brief
.single_file_support = false
?Needs #3666