Skip to content

Commit

Permalink
fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
zardoy committed Apr 19, 2023
1 parent cd1ea3d commit 62f1cd5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/specialCommands.ts
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ export default () => {
registerExtensionCommand('insertNameOfCompletion', async (_, { insertMode } = {}) => {
const editor = vscode.window.activeTextEditor
if (!editor) return
if (!getExtensionSetting('experimental.enableInsertNameOfSuggestionFix')) {
if (!getExtensionSetting('experiments.enableInsertNameOfSuggestionFix')) {
const result = await sendCommand<RequestResponseTypes['getLastResolvedCompletion']>('getLastResolvedCompletion')
if (!result) return
const position = editor.selection.active
Expand Down

0 comments on commit 62f1cd5

Please sign in to comment.