hansec / fortran-language-server

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

Autocomplete for named constructs (do, block, etc.) #157

Open PaulXiCao opened 4 years ago

PaulXiCao commented 4 years ago

It would be nice to have autocomplete for named constructs such as do-loops and blocks.

Example

OUT: do i = 1, n
  ...
  exit OUT
end do OUT

after exit one could autocomplete the scoped name.