Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@
import com.espressif.idf.core.tools.vo.EimJson;
import com.espressif.idf.core.tools.vo.IdfInstalled;
import com.espressif.idf.core.util.IDFUtil;
import com.espressif.idf.core.util.LspService;
import com.espressif.idf.core.util.StringUtil;

/**
Expand Down Expand Up @@ -150,6 +151,11 @@ private IStatus setupTools(IProgressMonitor monitor)
copyOpenOcdRules();
monitor.worked(1);

monitor.setTaskName("Applying Clangd Preferences"); //$NON-NLS-1$
log("Applying Clangd Preferences", IStatus.INFO); //$NON-NLS-1$
var lspService = new LspService();
lspService.updateClangdPath();
lspService.updateQueryDriver();
log("Tools Setup complete", IStatus.INFO); //$NON-NLS-1$

return Status.OK_STATUS;
Expand Down
Loading