-
Notifications
You must be signed in to change notification settings - Fork 19
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
nvim version 0.10 bug #31
Comments
+1 |
There is a type error in the initialization code of LocationFile: Issue DetailsThe line How to fixChange the line from: config["col"][false] = dm[2] to: config.col = dm[2] This adjustment will directly assign the value of Addition Info: NVIM v0.10.0 |
thanks @KishoreNewton, |
As the original author is not there, I made a fork and fix the issue in nvim-0.10. edluffy/specs.nvim#31
Error executing vim.schedule lua callback: ...nxu/.local/share/nvim/lazy/specs.nvim/lua/spe
cs/init.lua:101: attempt to index field 'col' (a number value)
stack traceback:
...nxu/.local/share/nvim/lazy/specs.nvim/lua/specs/init.lua:101: in function ''
vim/_editor.lua: in function <vim/_editor.lua:0>
The text was updated successfully, but these errors were encountered: