Description
The Typescript team has added Copilot suggestions to various refactors. To bring similar functionality to python code, Pylance has enabled the implement inherited abstract classes with Copilot code action through the Github Copilot extension for Python files.
To display the sparkle icon for the code action instead of the regular light bulb icon, the isAI
property needs to be set to true
on the codeAction
.
Vscode-python and LSP doesn't support this API yet. Would it be possible for vscode-python to enable the codeActionAI proposed API?
Is it as simple as adding "codeActionAI"
to the "enabledApiProposals"
in package.json
? I'd be happy to send a PR if that's all it takes. Thanks!