We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 111a848 commit 19b658bCopy full SHA for 19b658b
CodeFormatServer/src/Service/ModuleService.cpp
@@ -259,7 +259,7 @@ std::vector<vscode::CompletionItem> ModuleService::GetModuleCompletions(std::sha
259
{
260
auto& luaModule = pair.second.front();
261
completion.detail = Util::format("({})", name);
262
- completion.documentation = format("import from {}", luaModule->FilePath);
+ completion.documentation = Util::format("import from {}", luaModule->FilePath);
263
auto object = nlohmann::json::object();
264
object["moduleName"] = luaModule->ModuleName;
265
object["path"] = luaModule->FilePath;
0 commit comments