hansec / autocomplete-fortran

https://atom.io/packages/autocomplete-fortran
MIT License
16 stars 0 forks source link

Type members are only completed when declared in same file. #10

Closed SolidTux closed 7 years ago

SolidTux commented 7 years ago

If the type is declared in a separate file, the members are not completed. For example

module modtest
    implicit none
    type TestType
        real :: a
        integer :: b
    end type
end module modtest
program test
    implicit none
    use :: modtest

    type(TestType) :: t
    t%_
end program test
hansec commented 7 years ago

Sorry for the delay. I believe I have resolved this issue. If it persists after updating to the newest version of the package let me know.