aboutsummaryrefslogtreecommitdiff
path: root/editors/code/src/lsp_ext.ts
diff options
context:
space:
mode:
authorAleksey Kladov <[email protected]>2020-06-02 16:34:18 +0100
committerAleksey Kladov <[email protected]>2020-06-02 16:34:18 +0100
commita83ab820a4633bac718ee0fd11f06d1b3142be6b (patch)
treee5cf794af01ab0b580476a8890627378c1f29fb5 /editors/code/src/lsp_ext.ts
parent03039821195c9d9c4bbc1e4cbddb6378c43a6c52 (diff)
Spec better runnables
Diffstat (limited to 'editors/code/src/lsp_ext.ts')
-rw-r--r--editors/code/src/lsp_ext.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/editors/code/src/lsp_ext.ts b/editors/code/src/lsp_ext.ts
index 73d573678..c51acfccb 100644
--- a/editors/code/src/lsp_ext.ts
+++ b/editors/code/src/lsp_ext.ts
@@ -56,7 +56,7 @@ export interface Runnable {
56 executableArgs: string[]; 56 executableArgs: string[];
57 }; 57 };
58} 58}
59export const runnables = new lc.RequestType<RunnablesParams, Runnable[], void>("rust-analyzer/runnables"); 59export const runnables = new lc.RequestType<RunnablesParams, Runnable[], void>("experimental/runnables");
60 60
61export type InlayHint = InlayHint.TypeHint | InlayHint.ParamHint | InlayHint.ChainingHint; 61export type InlayHint = InlayHint.TypeHint | InlayHint.ParamHint | InlayHint.ChainingHint;
62 62