mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-10-01 11:31:15 +00:00
Hints are not commands
This commit is contained in:
parent
3d008a78d0
commit
7b199f6a4b
@ -10,7 +10,6 @@ import { onEnter } from './on_enter';
|
|||||||
import { parentModule } from './parent_module';
|
import { parentModule } from './parent_module';
|
||||||
import { syntaxTree } from './syntax_tree';
|
import { syntaxTree } from './syntax_tree';
|
||||||
import { expandMacro } from './expand_macro';
|
import { expandMacro } from './expand_macro';
|
||||||
import * as inlayHints from './inlay_hints';
|
|
||||||
import { run, runSingle } from './runnables';
|
import { run, runSingle } from './runnables';
|
||||||
|
|
||||||
function collectGarbage(ctx: Ctx): Cmd {
|
function collectGarbage(ctx: Ctx): Cmd {
|
||||||
@ -38,7 +37,6 @@ export {
|
|||||||
parentModule,
|
parentModule,
|
||||||
syntaxTree,
|
syntaxTree,
|
||||||
onEnter,
|
onEnter,
|
||||||
inlayHints,
|
|
||||||
collectGarbage,
|
collectGarbage,
|
||||||
run,
|
run,
|
||||||
runSingle,
|
runSingle,
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
import * as vscode from 'vscode';
|
import * as vscode from 'vscode';
|
||||||
import * as lc from 'vscode-languageclient';
|
import * as lc from 'vscode-languageclient';
|
||||||
import { Server } from '../server';
|
import { Server } from './server';
|
||||||
|
|
||||||
interface InlayHintsParams {
|
interface InlayHintsParams {
|
||||||
textDocument: lc.TextDocumentIdentifier;
|
textDocument: lc.TextDocumentIdentifier;
|
@ -2,7 +2,7 @@ import * as vscode from 'vscode';
|
|||||||
import * as lc from 'vscode-languageclient';
|
import * as lc from 'vscode-languageclient';
|
||||||
|
|
||||||
import * as commands from './commands';
|
import * as commands from './commands';
|
||||||
import { HintsUpdater } from './commands/inlay_hints';
|
import { HintsUpdater } from './inlay_hints';
|
||||||
import { StatusDisplay } from './commands/watch_status';
|
import { StatusDisplay } from './commands/watch_status';
|
||||||
import * as events from './events';
|
import * as events from './events';
|
||||||
import * as notifications from './notifications';
|
import * as notifications from './notifications';
|
||||||
|
Loading…
x
Reference in New Issue
Block a user