Skip to content

Commit 62f1cd5

Browse files
committed
fix build
1 parent cd1ea3d commit 62f1cd5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/specialCommands.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,7 @@ export default () => {
243243
registerExtensionCommand('insertNameOfCompletion', async (_, { insertMode } = {}) => {
244244
const editor = vscode.window.activeTextEditor
245245
if (!editor) return
246-
if (!getExtensionSetting('experimental.enableInsertNameOfSuggestionFix')) {
246+
if (!getExtensionSetting('experiments.enableInsertNameOfSuggestionFix')) {
247247
const result = await sendCommand<RequestResponseTypes['getLastResolvedCompletion']>('getLastResolvedCompletion')
248248
if (!result) return
249249
const position = editor.selection.active

0 commit comments

Comments
 (0)