We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 87173e1 commit 452969bCopy full SHA for 452969b
packages/jupyterlab-lsp/src/adapters/codemirror/features/highlights.ts
@@ -27,7 +27,6 @@ export class Highlights extends CodeMirrorLSPFeature {
27
];
28
29
register(): void {
30
- this.connection_handlers.set('highlight', this.handleHighlight);
31
this.editor_handlers.set('cursorActivity', this.onCursorActivity);
32
super.register();
33
}
packages/jupyterlab-lsp/src/adapters/codemirror/features/hover.ts
@@ -44,7 +44,6 @@ export class Hover extends CodeMirrorLSPFeature {
44
);
45
46
});
47
- this.connection_handlers.set('hover', this.handleHover);
48
// TODO: make the debounce rate configurable
49
this.debounced_get_hover = new Debouncer<Promise<lsProtocol.Hover>>(
50
this.on_hover,
0 commit comments