Skip to content
/ vim Public

Useful vim indent, syntax, and filetype setting for NCL, fortran.

Notifications You must be signed in to change notification settings

xiexinyls/vim

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

This directory contains some useful ncl syntax, indent, and dictionary settings.

To use them, put the directory structure into your .vim directory.

Turn on the filetype plugin and syntax
by adding the following lines to your .vimrc file:

filetype plugin indent on
syntax on



To indent the current line, simply type "=="

To indent the whole ncl file, type "gg=G"



Known problem:
When you use "else if" statement like this,

if ( condition ) then
  ...
else if ( condition ) then
  ...
else if ( condition ) then
  ...
end if
end if
end if

the indent code may not work right. To avoid that, try the following code style

if ( condition ) then
  ...
else

  if ( condition ) then
    else

       if ( condition ) then
         ...
       end if
  end if
end if

About

Useful vim indent, syntax, and filetype setting for NCL, fortran.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published