How to open different man page section in VIM (with K shortcut)? -
often times, there name overloading man page sections. example, tried lookup
getopt(...)
with shiftk , vim opened getopt(1)
wanted getopt(3)
because i'm writing c-program.
is there way specify man page section open in vim?
thanks romainl, looked vim , proper way is
<section number>k
i.e. 3k under getopt open getopt(3).