You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
publicstaticreadonlyinlineSuggestionVisible=newRawContextKey<boolean>('inlineSuggestionVisible',false,nls.localize('inlineSuggestionVisible',"Whether an inline suggestion is visible"));
25
24
publicstaticreadonlyinlineSuggestionHasIndentation=newRawContextKey<boolean>('inlineSuggestionHasIndentation',false,nls.localize('inlineSuggestionHasIndentation',"Whether the inline suggestion starts with whitespace"));
26
25
publicstaticreadonlyinlineSuggestionHasIndentationLessThanTabSize=newRawContextKey<boolean>('inlineSuggestionHasIndentationLessThanTabSize',true,nls.localize('inlineSuggestionHasIndentationLessThanTabSize',"Whether the inline suggestion starts with whitespace that is less than what would be inserted by tab"));
27
-
/**
28
-
* Enables to use Ctrl+Left to undo fully (partially) accepted inline completions (the completion is no longer visible then).
29
-
*/
30
-
publicstaticreadonlyinlineSuggestionJustCommitted=newRawContextKey<boolean>('inlineSuggestionJustCommitted',false,nls.localize('inlineSuggestionJustCommitted',"Whether an inline suggestion just got committed"));
31
26
32
27
staticID='editor.contrib.ghostTextController';
33
28
@@ -96,12 +91,10 @@ export class GhostTextController extends Disposable {
0 commit comments