From 1c47dd508d4f08e97ce9cbc88f83861a3b25225f Mon Sep 17 00:00:00 2001 From: Alec Mev Date: Tue, 9 Aug 2022 17:43:12 +0300 Subject: [PATCH] Add use_node_ipc to default settings See https://github.com/sublimelsp/LSP/pull/2015 Disabled by default because stdio works in 99.(9)% of cases, so there's no reason to switch until it's proven to be reliable. --- LSP-eslint.sublime-settings | 3 +++ 1 file changed, 3 insertions(+) diff --git a/LSP-eslint.sublime-settings b/LSP-eslint.sublime-settings index a9ca3d7..3c52719 100644 --- a/LSP-eslint.sublime-settings +++ b/LSP-eslint.sublime-settings @@ -125,6 +125,9 @@ ] }, "command": ["${node_bin}", "${server_path}", "--stdio"], + // Experimental. Helps with configs and plugins that print to stdout. Make + // sure to replace `--stdio` with `--node-ipc` above when you enable this. + "use_node_ipc": false, "selector": "source.js | source.ts | source.jsx | source.tsx | source.js.jsx | source.js.react | source.ts.react | text.html.vue | text.html.basic", "env": { // Enables ESLint debug mode