lsp-bridge -- 速度最快的语法补全插件

this happen when I pull latest git repository, what the hell ? is there anybody do anything wrong with the code ??

更新后重启一下吧,不要什么 hell 不 hell 的,出了问题先自己研究一下。

你试下改这个, pyright.json 里面, “settings” 里面的 “analysis” 改成 “python.analysis” 看看。好像我这么改就出来了。

怀疑大概是 “settings” 里面的设置,pyright 根本没解析到。特别是 “useLibraryCodeForTypes”, 试试看,可以就联系老王改。

王哥验证下是不是这个原因导致 stubPath 选项根本没被识别到。 pyright.json 里面 “settings” 下面的 “analysis” 要改成 “python.analysis”。

解决了,有效。修改 pyright.json 里面,"analysis""python.analysis"。 感谢大佬。

pr 了,等合并。

感谢大佬,手速慢了,哈哈哈哈。

似乎有点其他小问题,例如 opencv 这种没有 stubs 也没办法直接分析的,出来的补全是不对的。之前是完全不出来。添加 stubs 之后才正常 (GitHub - microsoft/python-type-stubs: A set of type stubs for popular Python packages. These are works in progress from the Microsoft Python team and others, with the intent that they are contributed to typeshed or to the associated packages once sufficiently complete.)

截屏2022-05-21 22.52.16

我们可以考虑在这里写一个固定的路径,比如 ~/.cache/lsp-bridge/pyright/typing 这种,少什么库,就切换到目录 ~/.cache/lsp-bridge/pyright/typing 执行命令 pyright --createstub xxx

这样应该就可以正常工作了,大佬可以测试一下,欢迎发PR. :wink:

你们补全 java 代码时遇到这样的问题吗,

补全时我把参数类型打了出来, printlnString 的补全结果直接变成了 println(String x) : void

最小化配置为推荐配置

emacs 版本 29.0.50

emacs-repository-version e13744780fea9c11a4fed3de08bd0384ce2de8e8

更新一下lsp-bridge吧,新版本应该好了。

我记得 pyright --createstub xxx 好像并不行,他主要是生成一个草稿,给人手写 stubs 用的,不适用来补全的。我去看了 pylance, 他也是集成了 microsoft 的 python-type- stubs (GitHub - microsoft/python-type-stubs: A set of type stubs for popular Python packages. These are works in progress from the Microsoft Python team and others, with the intent that they are contributed to typeshed or to the associated packages once sufficiently complete.)

这个帖子后面几楼讨论过这个事情。[(lsp-mode使用pyright补全python提示未知模块名 - #14,来自 Voleking)]

已经是 master 最新版本了 eb55723, jdtls 是 aur 安装的,不知道是不是这个的问题,等我试一下。

试了一下其他版本还是不行, java version 11。

我录了个视频,使用用是有你说的问题。不过不明显,有点小bug还能接受。不过配置还要优化一下,明天我整理一下。

我用的java17, jdtls版本我忘了,应该是1.9或者1.10明天确认一下。

你说的问题类似 go里面不使用补全的话会被自动添加多余的字符 · Issue #123 · manateelazycat/lsp-bridge · GitHub

就是直接敲入代码,不用补全,不匹配任何候选词的时候会触发补全错误,昨天已经修复。

这是我敲到 println的效果

这是我敲到 printlnString 的效果,这时候已经没有补全菜单了

我看了你们的讨论后,lsp-bridge需要改啥配置吗?

@jadestrong volar works with something wrong, may you take a look ?


ps: @manateelazycat when rename current buffer and file, the lsp-bridge will throw an error and not working, take a look at this

是一个要更新版本,第二个要上传实例代码,要不没法重现。

请多上传点重现实例帮助重现,光截图不能解决问题。

you just call rename-this-buffer-and-file in emacs, and the error will occur