I'm using Notepad++ to write Python 2.7 code. I just want to create my own block indicator and fold the block so it is hidden. Something like:
#//begin
#//end
I'm going to use the comment # as the front character so as not to upset the code. All the questions and answers I've found on this topic are several years old back when Notepad++ seemed to allow this. Now the menus have changed and it doesn't seem possible to simply do this. There is the option to create a "User defined language" but I don't want to do this from scratch. I want to add this one feature to Python. Or, if it is simple enough, create my own language using Python defaults as a starting point and adding this one feature. I just can't figure out how.

