So, I organize my Python code with sections like:
# < part1 >
do_stuff()
... many lines of code
# < part2 >
... etc
What I really, desperately want is to make a keyboard shortcut that will jump to the next occurrence of # < without my having to select it first or type it in the Find box. If I had this, I could skip to the next (and previous?) parts of my code happily all day!
Is there some command that would do this? In my dreams it’d be like {“command”: “find_next_occurrence_of_this_pattern”, “args”: {“pattern”: “# <”} }
(Whereas the commands I’m finding are all like find selection, find_next, show_panel… they’d take much longer.)
Can you help? Thanks! 