Closed cbcoutinho closed 8 years ago
I think I found a small exception that misses the regex in your free form Fortran declaration
Below, the integer variables are correctly highlighted, but the real of dimension(2) is just white, not being highlighted as a variable.
integer :: ii, jj integer :: order = 1 real(wp), dimension(2) = xcoords <-- This one
Take your time, no haste
I'm an idiot. Please disregard
integer :: ii, jj integer :: order = 1 real(wp), dimension(2) :: xcoords <-- should have been ::, not =
I think I found a small exception that misses the regex in your free form Fortran declaration
Below, the integer variables are correctly highlighted, but the real of dimension(2) is just white, not being highlighted as a variable.
Take your time, no haste