Hints are not commands

This commit is contained in:
Aleksey Kladov 2019-12-30 20:10:40 +01:00
parent 3d008a78d0
commit 7b199f6a4b
3 changed files with 2 additions and 4 deletions

View File

@ -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,

View File

@ -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;

View File

@ -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';