|
Whenever I type a period in a comment, I get autocompletion recommendations. If it is the end of the comment line and I hit return, I don't get a return; I get the completion instead. I am doing this all the time. The issue has been discussed before, but I don't understand its resolution, and the discussion has been closed. When I disable the Python extension (v2021.7.1060902895), the problem goes away, hence I'm here at this repo. I'm thinking that whatever the solution is, this shouldn't be default behavior. |
Replies: 3 comments 2 replies
|
Glancing through the "discussion" section, I now see that this section is ignored, so I'm moving this to a feature request. |
|
I think you you're after is the following setting: "editor.quickSuggestions": {
"comments": false
}You can scope that just to Python if you put it in a `"[python]" section of your settings. |
|
I posted this is an issue needing resolution and it quickly got transferred to the Pylance team, and despite my not even having Pylance installed, we got it resolved. VSCode was for some reason using the Jedi language server, which is known to have this problem. |

I posted this is an issue needing resolution and it quickly got transferred to the Pylance team, and despite my not even having Pylance installed, we got it resolved. VSCode was for some reason using the Jedi language server, which is known to have this problem.