Code Navigation in Emacs
When working with Python code bases, i sometimes have the need to jump between next / previous functions i am working on within the same file. As this is a common thing i would do, i tried searching for way to navigate to previous and next functions relative to my current position. There are a collection of tools that make this easy for you:
imenu With imenu, you are able to call =M-x imenu= or as it's bound to =C-x C-j= which will show the list of available imenu candidates and make you select one you'd like to jump to.