Commenting code in Notepad++

Viewed 153531

I'm using Notepad++ as an editor to write programs in Python. It might sound daft but I looked around in the editor and could not find any means (not the manual way but something like in Emacs) to do a block comment in my code.

Since so many language settings are supported in Notepad++, I'm curious to find a way to block comment code.

11 Answers

Try the following shortcut:

Ctrl+K.

Just select the desired line and click on Ctrl + Q Ps: I am using Notepad++

Related