diff options
author | Aleksey Kladov <[email protected]> | 2020-06-02 16:34:18 +0100 |
---|---|---|
committer | Aleksey Kladov <[email protected]> | 2020-06-02 16:34:18 +0100 |
commit | a83ab820a4633bac718ee0fd11f06d1b3142be6b (patch) | |
tree | e5cf794af01ab0b580476a8890627378c1f29fb5 /editors/code/src | |
parent | 03039821195c9d9c4bbc1e4cbddb6378c43a6c52 (diff) |
Spec better runnables
Diffstat (limited to 'editors/code/src')
-rw-r--r-- | editors/code/src/lsp_ext.ts | 2 |
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 | } |
59 | export const runnables = new lc.RequestType<RunnablesParams, Runnable[], void>("rust-analyzer/runnables"); | 59 | export const runnables = new lc.RequestType<RunnablesParams, Runnable[], void>("experimental/runnables"); |
60 | 60 | ||
61 | export type InlayHint = InlayHint.TypeHint | InlayHint.ParamHint | InlayHint.ChainingHint; | 61 | export type InlayHint = InlayHint.TypeHint | InlayHint.ParamHint | InlayHint.ChainingHint; |
62 | 62 | ||