ford icon indicating copy to clipboard operation
ford copied to clipboard

Click through from procedure calls in src files

Open connoraird opened this issue 8 months ago • 0 comments

To explore a codebase I often click through the src, from a procedure call to the implementation of the procedure being called. For example

call some_procedure(x, y, z)

I would click (often ⌘+click) some_procedure in the above code and then be redirected to the implementation of some_procedure to learn more. i.e.

subroutine some_procedure(x, y, z)
    implicit none
    integer, intent(inout) :: x, y, z 
   ! Some computation
end subroutine some_procedure

This sort of clicking through the src in the generated docs could be useful.

connoraird avatar May 27 '25 10:05 connoraird