fortran-plugin
fortran-plugin copied to clipboard
Fortran language plugin for IntelliJ Idea
It would be great to include the variable type in the pop-up which appears when the ctrl key is held down and the cursor moved on top of a variable....
For example ``` block integer :: i end block ``` The declaration is erroneously marked with a red squiggle
Pycharm 2019.3 Professional on macOS Catalina: a project with .f90 files gets stuck when indexing when I load the project. I have to force-quit pycharm and remove the plugin manually...
Fixed parsing of line continuation between "FORMAT" and "(". Test for free form: FORMAT(1x) FORMAT& (1x) Test for fixed form: FORMAT(1x) FORMAT &(1x)
Original code tries to parse `variable` from `input_item` prior to `expr` from `output_item` that results in an issue with the following code: WRITE (99,*) (A(K)*B,K=1,3) (Changing the order of `input_item`...
The following variable declaration REAL*8 Q1 is parsed incorrectly: the whole "8 Q1" string is considered as an `expr` in `nonstandard_kind_selector` because of the parser considers it as a double-precision...
Right now function signature and documentation are not reflected in Quick Documentation popup: 
Hi, I'm using clion 2019.2, I installed this plugin and open some source files of vasp 5.4.1. Then I find the this plugin crashed with the following info: ----- ase.lambda$getValueWithLock$1(CachedValueBase.java:240)...
Fixed form ```fortran PROGRAM TEST LOGICAL L L = .FALSE. WRITE (*, *) L IF (L) T H E N L = .FALSE. E L S E L = .TRUE....
Thanks again for adding code completion, in many cases, it works like a charm! However, code completion does for me not trigger at the beginning of a line, if no...