Skip to content

Commit

Permalink
chore: cleanup code
Browse files Browse the repository at this point in the history
  • Loading branch information
fannheyward committed Jan 30, 2024
1 parent e3c076a commit eca0a00
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export async function activate(context: ExtensionContext): Promise<void> {
const extFeature = new ClangdExtensionFeature();
const memoryUsageFeature = new MemoryUsageFeature(ctx);
const inlayFeature = new InlayHintsFeature(ctx);
await ctx.startServer(clangdPath, ...[astFeature, extFeature, memoryUsageFeature, inlayFeature]);
await ctx.startServer(clangdPath, astFeature, extFeature, memoryUsageFeature, inlayFeature);
} catch (e) {
return;
}
Expand Down

0 comments on commit eca0a00

Please sign in to comment.