File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
extensions/vscode/src/autocomplete Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ export const IS_NEXT_EDIT_ACTIVE = false ;
Original file line number Diff line number Diff line change 5
5
type AutocompleteOutcome ,
6
6
} from "core/autocomplete/util/types" ;
7
7
import { ConfigHandler } from "core/config/ConfigHandler" ;
8
- import { IGNORE_NEXT_EDIT } from "core/nextEdit/IgnoreNextEdit " ;
8
+ import { IS_NEXT_EDIT_ACTIVE } from "core/nextEdit/constants " ;
9
9
import { NextEditProvider } from "core/nextEdit/NextEditProvider" ;
10
10
import * as URI from "uri-js" ;
11
11
import { v4 as uuidv4 } from "uuid" ;
@@ -87,7 +87,7 @@ export class ContinueCompletionProvider
87
87
getDefinitionsFromLsp ,
88
88
) ;
89
89
// NOTE: Only turn it on locally when testing (for review purposes).
90
- if ( ! IGNORE_NEXT_EDIT ) {
90
+ if ( IS_NEXT_EDIT_ACTIVE ) {
91
91
this . nextEditProvider = new NextEditProvider (
92
92
this . configHandler ,
93
93
this . ide ,
You can’t perform that action at this time.
0 commit comments