Vim Tips Wiki
Register
Advertisement

Use this page to discuss script 2299 fortran: additional indentation rules for Fortran 95 and Fortran 90

  • Add constructive comments, bug reports, or discuss improvements (see the guideline).
  • Do not document the script here (the author should do that on vim.org).
  • This page may be out of date: check the script's vim.org page above, and its release notes.

Bug: Indent of bare "recursive function" does not work properly

To fix this, change line 57 in fortran.vim from

    if line =~? '^\s*\(\(recursive\s*\)\=pure\|elemental\)\=\s*subroutine'

to

    if line =~? '^\s*\(recursive\s*\)\=\(pure\|elemental\)\=\s*subroutine'

--May 3, 2012

Comments

The link http://www.unb.ca/fredericton/science/chem/ajit/f_vim.htm is dead.

Advertisement