Yang Qiaoyang
Yang Qiaoyang
@HighCommander4 I found it is the editor setting of my vscode that makes a diffrence. Configure settings as follows and the plugin can work like yours. ``` "editor.suggest.snippetsPreventQuickSuggestions": false ```...
I also encountered the problem recently. It hasn't occured before.
I encountered the same problem, too. And my vcpkg versions following: ``` vcpkg-tool version: 2022-06-17-9268e366206712e38102b28dbd1617697a99ff2e vcpkg-scripts version: c168ce4e7 2022-06-24 (3 months ago) ```
I should add that the bug only occurs in a cmake project. When I reproduce it in a normal folder, the auto completion of macro works all right.
关于抽象那部分写的超好的。
It's a bug in `lua/config/lsp/functions.lua:29`. original code: ```lua callback = M.format(), ``` should be modified to ```lua callback = M.format, ``` i.e. removing the trailing parenthesis.
However, I found that once the `format_on_save` mode turned on, the current buffer would keep in an unsaved state even after you hit ``.
I should also add that it failed on c project but succeeeded on rust project.
> > I should also add that it failed on c project but succeeeded on rust project. > > hi, are you using ROS? I just realized that the extensions...