Skip to content

Commit

Permalink
fix(ctx): formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
fannheyward committed Jul 12, 2024
1 parent 2bdd95d commit 74b747a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ctx.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import {
window,
workspace,
} from 'coc.nvim';
import { spawnSync } from "node:child_process";
import { spawnSync } from 'node:child_process';
import { existsSync } from 'node:fs';
import { join } from 'node:path';
import which from 'which';
Expand Down Expand Up @@ -112,7 +112,7 @@ export class Ctx {
if (systemBin) {
const { stderr } = spawnSync(systemBin, ['--version'], { encoding: 'utf8' });
if (stderr.trim().length > 0) {
return
return;
}

this.usingSystemServer = true;
Expand Down

0 comments on commit 74b747a

Please sign in to comment.