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 cd1ea3d commit 62f1cd5Copy full SHA for 62f1cd5
src/specialCommands.ts
@@ -243,7 +243,7 @@ export default () => {
243
registerExtensionCommand('insertNameOfCompletion', async (_, { insertMode } = {}) => {
244
const editor = vscode.window.activeTextEditor
245
if (!editor) return
246
- if (!getExtensionSetting('experimental.enableInsertNameOfSuggestionFix')) {
+ if (!getExtensionSetting('experiments.enableInsertNameOfSuggestionFix')) {
247
const result = await sendCommand<RequestResponseTypes['getLastResolvedCompletion']>('getLastResolvedCompletion')
248
if (!result) return
249
const position = editor.selection.active
0 commit comments