Fortran-FOSS-Programmers / Fortran-FOSS-Programmers/ford
Click through from procedure calls in src files
- 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.