Shortcut to comment out multiple lines with Python Tools for Visual Studio

Johan Råde picture Johan Råde · May 30, 2011 · Viewed 30.5k times · Source

What is the shortcut to comment out multiple lines with Python Tools for Visual Studio?

Answer

manojlds picture manojlds · May 30, 2011

CTRL+K then CTRL+C adds the # in VS for selected lines. CTRL+K then CTRL+U removes the # in VS for selected lines.