Results 221 comments of Eric Wong

Hi:, here is some example meybe help: 1. in lua code, there is not `let g:foo = 123`, It is `vim.g.foo = 123` viml "" " here is doc let...

> This was done in [c4c784a](https://github.com/hrsh7th/nvim-cmp/commit/c4c784a6214f1906229c4477812a4a0fe90342ca) Thanks you.

sorry, I can not reproduce it, it works well for me, and I am using neovim 0.10.0

I do not know why, but the test for vim is successed, the vader file is: https://github.com/SpaceVim/SpaceVim/blob/master/test/lua/data/toml.vader and this: https://github.com/SpaceVim/SpaceVim/blob/master/test/api/data/toml.vader

@pj-connect hmm, I do not know why this file is loaded, as I know spacevim do not use this path, only `~/.SpaceVim.d/init.toml`. you can find these on runtime log: ```...

是否可以提供最小化的重现步骤,这样方便测试和定位问题出在哪里,谢谢!

可以使用 `:pwd` 命令查看 vim 的当前目录,code runner 只是在当前目录执行 `python -`, 并把文件内容传给这个进程的stdin。可以理解为 `cat file_name | python -`

命令行测试出现同样的错误,这个无法修复了。或者说,目前我没有想到什么比较好的方式来修复。 ``` C:\Users\wsdjeg\Desktop\test_project>cat src\__main__.py | python - Traceback (most recent call last): File "", line 2, in ModuleNotFoundError: No module named 'logger_config' ``` 但是执行,`cd src` 后,在执行以下命令可以运行,请忽略无 `rich` 库的错误, ``` C:\Users\wsdjeg\Desktop\test_project\src>cat...

I got same issue in win 11, and fix by this suggession, https://github.com/LuaLS/lua-language-server/issues/1788#issuecomment-1464886248