hansec / fortran-language-server

Fortran Language Server for the Language Server Protocol
MIT License
295 stars 57 forks source link

Data types: double precision <-> doubleprecision (also complex) #110

Closed PaulXiCao closed 5 years ago

PaulXiCao commented 5 years ago

The language server does only recognize double data types if one includes a white space. But it is also valid fortran code to exclude it.

Example code

  double precision  :: x    !       recognized
  doubleprecision   :: y    !  not  recognized
  double complex    :: xc   !       recognized
  doublecomplex     :: yc   !  not  recognized
PaulXiCao commented 5 years ago

You beat me to it :)