문제

The fortran namelist syntax is defined in a few places, like on the Intel website and at http://owen.sj.ca.us/~rk/howto/slides/f90model/slides/namelist.html. I'm not sure if these are complete or even consistent, but some syntax highlighting would be better than none. Is there any such syntax highlighter?

도움이 되었습니까?

해결책

Adding this to ~/.vimrc allowed vim to recognise namelist files as fortran files, and the syntax highlighting that is applied is adequate:

if has("autocmd")
  au BufNewFile,BufRead *.nml set filetype=fortran
  au BufNewFile,BufRead *.namelist set filetype=fortran
endif
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top