We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Describe the bug
Globally defined functions common in Fixed Form Fortran do not get resolved when "imported".
To Reproduce fortls --debug_filepath test_fixed.f --debug_rootpath . --debug_hover --debug_line 11 --debug_char 16
fortls --debug_filepath test_fixed.f --debug_rootpath . --debug_hover --debug_line 11 --debug_char 16
function fff(x,y) implicit none real fff, x,y fff = x+y return end program main implicit none real y, fff y = fff(1.2,3.3) write(*,*) y end
Expected behavior show hover signature of FUNCTION fff
fff
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Describe the bug
Globally defined functions common in Fixed Form Fortran do not get resolved when "imported".
To Reproduce
fortls --debug_filepath test_fixed.f --debug_rootpath . --debug_hover --debug_line 11 --debug_char 16
Expected behavior
show hover signature of FUNCTION
fff
The text was updated successfully, but these errors were encountered: