How to jump to the beginning of the current function body in Vim?

vim

Solution

[m

Go to [count] previous start of a method

Works for Java or similar structured languages, and for Python as well.

Problem

As title, if I'm in the middle of function body and the function body is very long, how can I jump back to the beginning of the function body .

Original source

Related problems