satamas / fortran-plugin

Fortran language plugin for IntelliJ Idea
Apache License 2.0
80 stars 18 forks source link

Fix array slices syntax #82

Closed vorotynsky closed 2 years ago

vorotynsky commented 2 years ago

This fix allows columns in tiple subscript to be written with an empty middle expression without extra spaces.

Example:

integer :: A(:), B(:)

A = B(7::2)