Name: | Fortran Modes |
Version: | 2.3 |
Last update: | 2019-02-18 17:51:44 |
Col. 1 : | Blank, or one of c C ! * for comments |
Col. 2-5 : | Statement label (optional) |
Col. 6 : | Continuation of previous line (optional) |
Col. 7-72 : | Statements |
Col. 73-80 : | Sequence number (optional, rarely used today) |
⌥
) to display the items and shortcuts which shift the text
one space to the left/right.
write(unit=*, fmt=*) "Can't divide by zero!!", sqrt(rnorm/ynorm)so the sqrt… statement will be colored correctly as a keyword.
⌃⌥J
) to continue lines.
This shortcut has been retained for those who are used to it.
private :: solve, mv_prod, prod0, prod1, Preco, |to this
private :: solve, mv_prod, prod0, prod1, Preco, & |Continued lines are always indented twice the normal indentation amount. Some Fortran users like to also insert an "&" in column 6 in .f90 and .f95 files even though this is unnecessary. Fortran95 mode does not support this, and this syntax will result in errant formatting of subsequent lines.
Contraction | Signification |
a't | assign to |
b'd | blockdata |
d'c | do continue |
d'e | do end do |
d'p | double precision |
d'w | do while |
e'i | else if |
i'e | if else |
i'n | implicit none |
i't | if then |
s'c | select |
t'e | type |
w'd | while |
Return
will automatically indent the current line if necessary and then indent the
new line that is created.
!!!! This is a special comment ! !!! This is another one !!! ! !!! And this is a third.will be specially marked. In Fortran77 mode, this tag can appear after any valid column 1 comment character, as in
!!!! This is a special comment c !!! This is another one !!! C !!! And this is a third.