Fortran-FOSS-Programmers / Fortran-FOSS-Programmers/ford

Click through from procedure calls in src files

Open
#709 0 comments 1 reaction 0 assignees View on GitHub
enhancement
Dominant language
Python
Stars
458
Forks
138
PR merge metrics
No merged PRs in 30d

Description

To explore a codebase I often click through the src, from a procedure call to the implementation of the procedure being called. For example
```f90
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.
```f90
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.

Contributor guide

No contributing guide indexed for this repository

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.