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 7f17834 commit cb8f0bbCopy full SHA for cb8f0bb
src/vs/editor/contrib/stickyScroll/browser/stickyScrollController.ts
@@ -33,6 +33,8 @@ export class StickyScrollController extends Disposable implements IEditorContrib
33
this._stickyLineCandidateProvider = new StickyLineCandidateProvider(this._editor, _languageFeaturesService);
34
this._widgetState = new StickyScrollWidgetState([], 0);
35
36
+ this._register(this._stickyScrollWidget);
37
+ this._register(this._stickyLineCandidateProvider);
38
this._register(this._editor.onDidChangeConfiguration(e => {
39
if (e.hasChanged(EditorOption.stickyScroll)) {
40
this.readConfiguration();
0 commit comments