How to make a block of codes as pseudocode all at once in VS code?

Viewed 15

i.e. Are there any shortcuts that can prefix multiple lines of codes with an "#" in one setting?

1 Answers

If by pseudocode you mean code comments, you can select the entire code block with the mouse and press CTRL+K+C.
Otherwise, you need to find an extension to convert your code to pseudocode.

Related