annotate runtime/indent/fortran.vim @ 34907:8c9e43278b2c v9.1.0314

patch 9.1.0314: Vim9: Can define a class in a function Commit: https://github.com/vim/vim/commit/c51578fed8f21cf3c1ff72bbb599dca2db02be84 Author: Yegappan Lakshmanan <yegappan@yahoo.com> Date: Sat Apr 13 17:58:09 2024 +0200 patch 9.1.0314: Vim9: Can define a class in a function Problem: Vim9: Can define a class in a function (Doug Kearns) Solution: Give an error for a class defined in a function, slightly reword some public error messages (Yegappan Lakshmanan) fixes: #13184 fixes: #13326 closes: #14537 Signed-off-by: Yegappan Lakshmanan <yegappan@yahoo.com> Signed-off-by: Christian Brabandt <cb@256bit.org>
author Christian Brabandt <cb@256bit.org>
date Sat, 13 Apr 2024 18:15:03 +0200
parents 7bbae0fa2d7d
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1 " Vim indent file
34010
7bbae0fa2d7d Runtime(fortran): updates to indent, syntax and ftplugin (#13752)
Christian Brabandt <cb@256bit.org>
parents: 33894
diff changeset
2 " Language: Fortran 2023 (and Fortran 2018, 2008, 2003, 95, 90, 77, 66)
7bbae0fa2d7d Runtime(fortran): updates to indent, syntax and ftplugin (#13752)
Christian Brabandt <cb@256bit.org>
parents: 33894
diff changeset
3 " Version: (v50) 2023 December 22
33894
cf2ae76cbbf7 runtime(fortran): update syntax and ftplugins
Christian Brabandt <cb@256bit.org>
parents: 28933
diff changeset
4 " Maintainers: Ajit J. Thakkar <ajit@unb.ca>; <https://ajit.ext.unb.ca/>
cf2ae76cbbf7 runtime(fortran): update syntax and ftplugins
Christian Brabandt <cb@256bit.org>
parents: 28933
diff changeset
5 " Joshua Hollett <j.hollett@uwinnipeg.ca>
7384
aea5ebf352c4 commit https://github.com/vim/vim/commit/256972a9849b5d575b62a6a71be5b6934b5b0e8b
Christian Brabandt <cb@256bit.org>
parents: 6530
diff changeset
6 " Usage: For instructions, do :help fortran-indent from Vim
6530
435956324539 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 3237
diff changeset
7 " Credits:
22565
17c4178f26ea Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 20115
diff changeset
8 " Version 0.1 was created in September 2000 by Ajit Thakkar.
17c4178f26ea Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 20115
diff changeset
9 " Since then, useful suggestions and contributions have been made, in order, by:
17c4178f26ea Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 20115
diff changeset
10 " Albert Oliver Serra, Takuya Fujiwara, Philipp Edelmann, Eisuke Kawashima,
28933
57c9377b9c62 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 23737
diff changeset
11 " Louis Cochen, and Doug Kearns.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
12
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
13 " Only load this indent file when no other was loaded.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
14 if exists("b:did_indent")
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
15 finish
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
16 endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
17 let b:did_indent = 1
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
18
3237
91e53bcb7946 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2908
diff changeset
19 let s:cposet=&cpoptions
91e53bcb7946 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2908
diff changeset
20 set cpoptions&vim
28933
57c9377b9c62 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 23737
diff changeset
21 let b:undo_indent = "setl inde< indk<"
3237
91e53bcb7946 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2908
diff changeset
22
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
23 setlocal indentkeys+==~end,=~case,=~if,=~else,=~do,=~where,=~elsewhere,=~select
2908
fd09a9c8468e Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2377
diff changeset
24 setlocal indentkeys+==~endif,=~enddo,=~endwhere,=~endselect,=~elseif
34010
7bbae0fa2d7d Runtime(fortran): updates to indent, syntax and ftplugin (#13752)
Christian Brabandt <cb@256bit.org>
parents: 33894
diff changeset
25 setlocal indentkeys+==~interface,=~forall,=~associate,=~block,=~enum,=~critical
7bbae0fa2d7d Runtime(fortran): updates to indent, syntax and ftplugin (#13752)
Christian Brabandt <cb@256bit.org>
parents: 33894
diff changeset
26 setlocal indentkeys+==~endforall,=~endassociate,=~endblock,=~endenum,=~endcritical
2908
fd09a9c8468e Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2377
diff changeset
27 if exists("b:fortran_indent_more") || exists("g:fortran_indent_more")
fd09a9c8468e Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2377
diff changeset
28 setlocal indentkeys+==~function,=~subroutine,=~module,=~contains,=~program
fd09a9c8468e Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2377
diff changeset
29 setlocal indentkeys+==~endfunction,=~endsubroutine,=~endmodule
fd09a9c8468e Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2377
diff changeset
30 setlocal indentkeys+==~endprogram
fd09a9c8468e Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2377
diff changeset
31 endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
32
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
33 " Determine whether this is a fixed or free format source file
7384
aea5ebf352c4 commit https://github.com/vim/vim/commit/256972a9849b5d575b62a6a71be5b6934b5b0e8b
Christian Brabandt <cb@256bit.org>
parents: 6530
diff changeset
34 " if this hasn't been done yet using the priority:
aea5ebf352c4 commit https://github.com/vim/vim/commit/256972a9849b5d575b62a6a71be5b6934b5b0e8b
Christian Brabandt <cb@256bit.org>
parents: 6530
diff changeset
35 " buffer-local value
aea5ebf352c4 commit https://github.com/vim/vim/commit/256972a9849b5d575b62a6a71be5b6934b5b0e8b
Christian Brabandt <cb@256bit.org>
parents: 6530
diff changeset
36 " > global value
aea5ebf352c4 commit https://github.com/vim/vim/commit/256972a9849b5d575b62a6a71be5b6934b5b0e8b
Christian Brabandt <cb@256bit.org>
parents: 6530
diff changeset
37 " > file extension as in Intel ifort, gcc (gfortran), NAG, Pathscale, and Cray compilers
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
38 if !exists("b:fortran_fixed_source")
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
39 if exists("fortran_free_source")
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
40 " User guarantees free source form
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
41 let b:fortran_fixed_source = 0
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
42 elseif exists("fortran_fixed_source")
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
43 " User guarantees fixed source form
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
44 let b:fortran_fixed_source = 1
20115
bd021eb62e73 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 10385
diff changeset
45 elseif expand("%:e") =~? '^f\%(90\|95\|03\|08\)$'
7384
aea5ebf352c4 commit https://github.com/vim/vim/commit/256972a9849b5d575b62a6a71be5b6934b5b0e8b
Christian Brabandt <cb@256bit.org>
parents: 6530
diff changeset
46 " Free-form file extension defaults as in Intel ifort, gcc(gfortran), NAG, Pathscale, and Cray compilers
aea5ebf352c4 commit https://github.com/vim/vim/commit/256972a9849b5d575b62a6a71be5b6934b5b0e8b
Christian Brabandt <cb@256bit.org>
parents: 6530
diff changeset
47 let b:fortran_fixed_source = 0
20115
bd021eb62e73 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 10385
diff changeset
48 elseif expand("%:e") =~? '^\%(f\|f77\|for\)$'
7384
aea5ebf352c4 commit https://github.com/vim/vim/commit/256972a9849b5d575b62a6a71be5b6934b5b0e8b
Christian Brabandt <cb@256bit.org>
parents: 6530
diff changeset
49 " Fixed-form file extension defaults
aea5ebf352c4 commit https://github.com/vim/vim/commit/256972a9849b5d575b62a6a71be5b6934b5b0e8b
Christian Brabandt <cb@256bit.org>
parents: 6530
diff changeset
50 let b:fortran_fixed_source = 1
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
51 else
34010
7bbae0fa2d7d Runtime(fortran): updates to indent, syntax and ftplugin (#13752)
Christian Brabandt <cb@256bit.org>
parents: 33894
diff changeset
52 " Modern fortran compilers still allow both fixed and free source form
7384
aea5ebf352c4 commit https://github.com/vim/vim/commit/256972a9849b5d575b62a6a71be5b6934b5b0e8b
Christian Brabandt <cb@256bit.org>
parents: 6530
diff changeset
53 " Assume fixed source form unless signs of free source form
6530
435956324539 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 3237
diff changeset
54 " are detected in the first five columns of the first s:lmax lines.
7384
aea5ebf352c4 commit https://github.com/vim/vim/commit/256972a9849b5d575b62a6a71be5b6934b5b0e8b
Christian Brabandt <cb@256bit.org>
parents: 6530
diff changeset
55 " Detection becomes more accurate and time-consuming if more lines
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
56 " are checked. Increase the limit below if you keep lots of comments at
7384
aea5ebf352c4 commit https://github.com/vim/vim/commit/256972a9849b5d575b62a6a71be5b6934b5b0e8b
Christian Brabandt <cb@256bit.org>
parents: 6530
diff changeset
57 " the very top of each file and you have a fast computer.
2377
878562053ba3 Update Fortran indent and syntax file. (Ajit Thakkar)
Bram Moolenaar <bram@vim.org>
parents: 1125
diff changeset
58 let s:lmax = 500
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
59 if ( s:lmax > line("$") )
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
60 let s:lmax = line("$")
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
61 endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
62 let b:fortran_fixed_source = 1
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
63 let s:ln=1
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
64 while s:ln <= s:lmax
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
65 let s:test = strpart(getline(s:ln),0,5)
2377
878562053ba3 Update Fortran indent and syntax file. (Ajit Thakkar)
Bram Moolenaar <bram@vim.org>
parents: 1125
diff changeset
66 if s:test !~ '^[Cc*]' && s:test !~ '^ *[!#]' && s:test =~ '[^ 0-9\t]' && s:test !~ '^[ 0-9]*\t'
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
67 let b:fortran_fixed_source = 0
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
68 break
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
69 endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
70 let s:ln = s:ln + 1
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
71 endwhile
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
72 endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
73 endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
74
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
75 " Define the appropriate indent function but only once
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
76 if (b:fortran_fixed_source == 1)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
77 setlocal indentexpr=FortranGetFixedIndent()
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
78 if exists("*FortranGetFixedIndent")
23737
34b4eb3a8458 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 22565
diff changeset
79 let &cpoptions = s:cposet
34b4eb3a8458 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 22565
diff changeset
80 unlet s:cposet
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
81 finish
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
82 endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
83 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
84 setlocal indentexpr=FortranGetFreeIndent()
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
85 if exists("*FortranGetFreeIndent")
23737
34b4eb3a8458 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 22565
diff changeset
86 let &cpoptions = s:cposet
34b4eb3a8458 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 22565
diff changeset
87 unlet s:cposet
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
88 finish
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
89 endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
90 endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
91
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
92 function FortranGetIndent(lnum)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
93 let ind = indent(a:lnum)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
94 let prevline=getline(a:lnum)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
95 " Strip tail comment
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
96 let prevstat=substitute(prevline, '!.*$', '', '')
2908
fd09a9c8468e Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2377
diff changeset
97 let prev2line=getline(a:lnum-1)
fd09a9c8468e Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2377
diff changeset
98 let prev2stat=substitute(prev2line, '!.*$', '', '')
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
99
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
100 "Indent do loops only if they are all guaranteed to be of do/end do type
1125
96cd8222a819 updated for version 7.1a
vimboss
parents: 840
diff changeset
101 if exists("b:fortran_do_enddo") || exists("g:fortran_do_enddo")
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
102 if prevstat =~? '^\s*\(\d\+\s\)\=\s*\(\a\w*\s*:\)\=\s*do\>'
7790
ca19726d5e83 commit https://github.com/vim/vim/commit/298b440930ecece38d6ea0505a3e582dc817e79b
Christian Brabandt <cb@256bit.org>
parents: 7384
diff changeset
103 let ind = ind + shiftwidth()
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
104 endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
105 if getline(v:lnum) =~? '^\s*\(\d\+\s\)\=\s*end\s*do\>'
7790
ca19726d5e83 commit https://github.com/vim/vim/commit/298b440930ecece38d6ea0505a3e582dc817e79b
Christian Brabandt <cb@256bit.org>
parents: 7384
diff changeset
106 let ind = ind - shiftwidth()
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
107 endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
108 endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
109
10385
368468ef35cf commit https://github.com/vim/vim/commit/c0514bf4777a1d55f5785b3887c5686fd0bbe870
Christian Brabandt <cb@256bit.org>
parents: 10244
diff changeset
110 "Add a shiftwidth to statements following if, else, else if, case, class,
2908
fd09a9c8468e Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2377
diff changeset
111 "where, else where, forall, type, interface and associate statements
34010
7bbae0fa2d7d Runtime(fortran): updates to indent, syntax and ftplugin (#13752)
Christian Brabandt <cb@256bit.org>
parents: 33894
diff changeset
112 if prevstat =~? '^\s*\(case\|class\s\+is\|else\|else\s*if\|else\s*where\)\>'
7bbae0fa2d7d Runtime(fortran): updates to indent, syntax and ftplugin (#13752)
Christian Brabandt <cb@256bit.org>
parents: 33894
diff changeset
113 \ ||prevstat=~? '^\s*\(type\|rank\|interface\|associate\|enum\|critical\)\>'
7bbae0fa2d7d Runtime(fortran): updates to indent, syntax and ftplugin (#13752)
Christian Brabandt <cb@256bit.org>
parents: 33894
diff changeset
114 \ ||prevstat=~? '^\s*change\s\+team\>'
2908
fd09a9c8468e Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2377
diff changeset
115 \ ||prevstat=~?'^\s*\(\d\+\s\)\=\s*\(\a\w*\s*:\)\=\s*\(forall\|where\|block\)\>'
fd09a9c8468e Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2377
diff changeset
116 \ ||prevstat=~? '^\s*\(\d\+\s\)\=\s*\(\a\w*\s*:\)\=\s*if\>'
7790
ca19726d5e83 commit https://github.com/vim/vim/commit/298b440930ecece38d6ea0505a3e582dc817e79b
Christian Brabandt <cb@256bit.org>
parents: 7384
diff changeset
117 let ind = ind + shiftwidth()
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
118 " Remove unwanted indent after logical and arithmetic ifs
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
119 if prevstat =~? '\<if\>' && prevstat !~? '\<then\>'
7790
ca19726d5e83 commit https://github.com/vim/vim/commit/298b440930ecece38d6ea0505a3e582dc817e79b
Christian Brabandt <cb@256bit.org>
parents: 7384
diff changeset
120 let ind = ind - shiftwidth()
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
121 endif
840
2c885fab04e3 updated for version 7.0e06
vimboss
parents: 819
diff changeset
122 " Remove unwanted indent after type( statements
2908
fd09a9c8468e Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2377
diff changeset
123 if prevstat =~? '^\s*type\s*('
7790
ca19726d5e83 commit https://github.com/vim/vim/commit/298b440930ecece38d6ea0505a3e582dc817e79b
Christian Brabandt <cb@256bit.org>
parents: 7384
diff changeset
124 let ind = ind - shiftwidth()
840
2c885fab04e3 updated for version 7.0e06
vimboss
parents: 819
diff changeset
125 endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
126 endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
127
2908
fd09a9c8468e Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2377
diff changeset
128 "Indent program units unless instructed otherwise
fd09a9c8468e Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2377
diff changeset
129 if !exists("b:fortran_indent_less") && !exists("g:fortran_indent_less")
fd09a9c8468e Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2377
diff changeset
130 let prefix='\(\(pure\|impure\|elemental\|recursive\)\s\+\)\{,2}'
fd09a9c8468e Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2377
diff changeset
131 let type='\(\(integer\|real\|double\s\+precision\|complex\|logical'
fd09a9c8468e Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2377
diff changeset
132 \.'\|character\|type\|class\)\s*\S*\s\+\)\='
10244
876fbdd84e52 commit https://github.com/vim/vim/commit/2ec618c9feac4573b154510236ad8121c77d0eca
Christian Brabandt <cb@256bit.org>
parents: 10048
diff changeset
133 if prevstat =~? '^\s*\(contains\|submodule\|program\)\>'
876fbdd84e52 commit https://github.com/vim/vim/commit/2ec618c9feac4573b154510236ad8121c77d0eca
Christian Brabandt <cb@256bit.org>
parents: 10048
diff changeset
134 \ ||prevstat =~? '^\s*'.'module\>\(\s*\procedure\)\@!'
2908
fd09a9c8468e Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2377
diff changeset
135 \ ||prevstat =~? '^\s*'.prefix.'subroutine\>'
fd09a9c8468e Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2377
diff changeset
136 \ ||prevstat =~? '^\s*'.prefix.type.'function\>'
fd09a9c8468e Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2377
diff changeset
137 \ ||prevstat =~? '^\s*'.type.prefix.'function\>'
7790
ca19726d5e83 commit https://github.com/vim/vim/commit/298b440930ecece38d6ea0505a3e582dc817e79b
Christian Brabandt <cb@256bit.org>
parents: 7384
diff changeset
138 let ind = ind + shiftwidth()
2908
fd09a9c8468e Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2377
diff changeset
139 endif
fd09a9c8468e Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2377
diff changeset
140 if getline(v:lnum) =~? '^\s*contains\>'
fd09a9c8468e Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2377
diff changeset
141 \ ||getline(v:lnum)=~? '^\s*end\s*'
10244
876fbdd84e52 commit https://github.com/vim/vim/commit/2ec618c9feac4573b154510236ad8121c77d0eca
Christian Brabandt <cb@256bit.org>
parents: 10048
diff changeset
142 \ .'\(function\|subroutine\|module\|submodule\|program\)\>'
7790
ca19726d5e83 commit https://github.com/vim/vim/commit/298b440930ecece38d6ea0505a3e582dc817e79b
Christian Brabandt <cb@256bit.org>
parents: 7384
diff changeset
143 let ind = ind - shiftwidth()
2908
fd09a9c8468e Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2377
diff changeset
144 endif
fd09a9c8468e Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2377
diff changeset
145 endif
fd09a9c8468e Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2377
diff changeset
146
10385
368468ef35cf commit https://github.com/vim/vim/commit/c0514bf4777a1d55f5785b3887c5686fd0bbe870
Christian Brabandt <cb@256bit.org>
parents: 10244
diff changeset
147 "Subtract a shiftwidth from else, else if, elsewhere, case, class, end if,
2908
fd09a9c8468e Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2377
diff changeset
148 " end where, end select, end forall, end interface, end associate,
34010
7bbae0fa2d7d Runtime(fortran): updates to indent, syntax and ftplugin (#13752)
Christian Brabandt <cb@256bit.org>
parents: 33894
diff changeset
149 " end enum, end type, end block, end team and end type statements
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
150 if getline(v:lnum) =~? '^\s*\(\d\+\s\)\=\s*'
34010
7bbae0fa2d7d Runtime(fortran): updates to indent, syntax and ftplugin (#13752)
Christian Brabandt <cb@256bit.org>
parents: 33894
diff changeset
151 \. '\(else\|else\s*if\|else\s*where\|case\|class\|rank\|type\s\+is\|'
7bbae0fa2d7d Runtime(fortran): updates to indent, syntax and ftplugin (#13752)
Christian Brabandt <cb@256bit.org>
parents: 33894
diff changeset
152 \. 'end\s*\(if\|where\|select\|interface\|critical\|team\|'
6530
435956324539 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 3237
diff changeset
153 \. 'type\|forall\|associate\|enum\|block\)\)\>'
7790
ca19726d5e83 commit https://github.com/vim/vim/commit/298b440930ecece38d6ea0505a3e582dc817e79b
Christian Brabandt <cb@256bit.org>
parents: 7384
diff changeset
154 let ind = ind - shiftwidth()
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
155 " Fix indent for case statement immediately after select
22565
17c4178f26ea Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 20115
diff changeset
156 if prevstat =~? '\<select\s*\(case\|type\)\>'
7790
ca19726d5e83 commit https://github.com/vim/vim/commit/298b440930ecece38d6ea0505a3e582dc817e79b
Christian Brabandt <cb@256bit.org>
parents: 7384
diff changeset
157 let ind = ind + shiftwidth()
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
158 endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
159 endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
160
2908
fd09a9c8468e Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2377
diff changeset
161 "First continuation line
fd09a9c8468e Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2377
diff changeset
162 if prevstat =~ '&\s*$' && prev2stat !~ '&\s*$'
7790
ca19726d5e83 commit https://github.com/vim/vim/commit/298b440930ecece38d6ea0505a3e582dc817e79b
Christian Brabandt <cb@256bit.org>
parents: 7384
diff changeset
163 let ind = ind + shiftwidth()
2908
fd09a9c8468e Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2377
diff changeset
164 endif
fd09a9c8468e Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2377
diff changeset
165 "Line after last continuation line
6530
435956324539 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 3237
diff changeset
166 if prevstat !~ '&\s*$' && prev2stat =~ '&\s*$' && prevstat !~? '\<then\>'
7790
ca19726d5e83 commit https://github.com/vim/vim/commit/298b440930ecece38d6ea0505a3e582dc817e79b
Christian Brabandt <cb@256bit.org>
parents: 7384
diff changeset
167 let ind = ind - shiftwidth()
2908
fd09a9c8468e Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2377
diff changeset
168 endif
fd09a9c8468e Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2377
diff changeset
169
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
170 return ind
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
171 endfunction
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
172
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
173 function FortranGetFreeIndent()
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
174 "Find the previous non-blank line
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
175 let lnum = prevnonblank(v:lnum - 1)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
176
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
177 "Use zero indent at the top of the file
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
178 if lnum == 0
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
179 return 0
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
180 endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
181
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
182 let ind=FortranGetIndent(lnum)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
183 return ind
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
184 endfunction
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
185
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
186 function FortranGetFixedIndent()
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
187 let currline=getline(v:lnum)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
188 "Don't indent comments, continuation lines and labelled lines
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
189 if strpart(currline,0,6) =~ '[^ \t]'
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
190 let ind = indent(v:lnum)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
191 return ind
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
192 endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
193
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
194 "Find the previous line which is not blank, not a comment,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
195 "not a continuation line, and does not have a label
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
196 let lnum = v:lnum - 1
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
197 while lnum > 0
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
198 let prevline=getline(lnum)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
199 if (prevline =~ "^[C*!]") || (prevline =~ "^\s*$")
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
200 \ || (strpart(prevline,5,1) !~ "[ 0]")
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
201 " Skip comments, blank lines and continuation lines
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
202 let lnum = lnum - 1
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
203 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
204 let test=strpart(prevline,0,5)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
205 if test =~ "[0-9]"
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
206 " Skip lines with statement numbers
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
207 let lnum = lnum - 1
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
208 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
209 break
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
210 endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
211 endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
212 endwhile
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
213
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
214 "First line must begin at column 7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
215 if lnum == 0
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
216 return 6
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
217 endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
218
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
219 let ind=FortranGetIndent(lnum)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
220 return ind
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
221 endfunction
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
222
23737
34b4eb3a8458 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 22565
diff changeset
223 let &cpoptions = s:cposet
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
224 unlet s:cposet
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
225
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
226 " vim:sw=2 tw=130