mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-24 15:54: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 { syntaxTree } from './syntax_tree';
|
||||
import { expandMacro } from './expand_macro';
|
||||
import * as inlayHints from './inlay_hints';
|
||||
import { run, runSingle } from './runnables';
|
||||
|
||||
function collectGarbage(ctx: Ctx): Cmd {
|
||||
@ -38,7 +37,6 @@ export {
|
||||
parentModule,
|
||||
syntaxTree,
|
||||
onEnter,
|
||||
inlayHints,
|
||||
collectGarbage,
|
||||
run,
|
||||
runSingle,
|
||||
|
@ -1,6 +1,6 @@
|
||||
import * as vscode from 'vscode';
|
||||
import * as lc from 'vscode-languageclient';
|
||||
import { Server } from '../server';
|
||||
import { Server } from './server';
|
||||
|
||||
interface InlayHintsParams {
|
||||
textDocument: lc.TextDocumentIdentifier;
|
@ -2,7 +2,7 @@ import * as vscode from 'vscode';
|
||||
import * as lc from 'vscode-languageclient';
|
||||
|
||||
import * as commands from './commands';
|
||||
import { HintsUpdater } from './commands/inlay_hints';
|
||||
import { HintsUpdater } from './inlay_hints';
|
||||
import { StatusDisplay } from './commands/watch_status';
|
||||
import * as events from './events';
|
||||
import * as notifications from './notifications';
|
||||
|
Loading…
Reference in New Issue
Block a user