Skip to content

Commit 452969b

Browse files
committed
remove highlight and hover connection_handlers
1 parent 87173e1 commit 452969b

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

packages/jupyterlab-lsp/src/adapters/codemirror/features/highlights.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ export class Highlights extends CodeMirrorLSPFeature {
2727
];
2828

2929
register(): void {
30-
this.connection_handlers.set('highlight', this.handleHighlight);
3130
this.editor_handlers.set('cursorActivity', this.onCursorActivity);
3231
super.register();
3332
}

packages/jupyterlab-lsp/src/adapters/codemirror/features/hover.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,6 @@ export class Hover extends CodeMirrorLSPFeature {
4444
);
4545
}
4646
});
47-
this.connection_handlers.set('hover', this.handleHover);
4847
// TODO: make the debounce rate configurable
4948
this.debounced_get_hover = new Debouncer<Promise<lsProtocol.Hover>>(
5049
this.on_hover,

0 commit comments

Comments
 (0)