@@ -22,6 +22,9 @@ setlocal noautoindent nosmartindent nolisp
22
22
setlocal softtabstop = 2 shiftwidth = 2 expandtab
23
23
setlocal indentkeys = ! ,o ,O
24
24
25
+ " FIXME: fix reader conditional tests. Include (:require [...]) test cases.
26
+ " Is it possible to fix reader conditional indentation?
27
+
25
28
" Set a new configuration option with a default value. Assigns a script-local
26
29
" version too, to be used as a default fallback if the global was "unlet".
27
30
function ! s: SConf (name, default) abort
@@ -37,19 +40,12 @@ endfunction
37
40
38
41
call s: SConf (' clojure_indent_style' , ' standard' )
39
42
call s: SConf (' clojure_indent_multiline_strings' , ' standard' )
40
-
41
- " TODO: rename this option.
42
43
call s: SConf (' clojure_fuzzy_indent_patterns' , [
43
44
\ ' ^with-\%(meta\|in-str\|out-str\|loading-context\)\@!' ,
44
45
\ ' ^def' ,
45
46
\ ' ^let'
46
47
\ ])
47
48
48
- " FIXME: fix reader conditional tests. Include (:require [...]) test cases.
49
- " Is it possible to fix reader conditional indentation?
50
-
51
- " TODO: make the indentation function usable from other Clojure-like languages.
52
-
53
49
" TODO: explain the different numbers. The "indent_style" option can override "0"
54
50
" - -1 Not in dictionary, follow defaults.
55
51
" - 0: Align to first argument, else 2 space indentation.
@@ -93,8 +89,7 @@ endfunction
93
89
" Used during list function indentation. Returns the position of the first
94
90
" operand in the list on the first line of the form at "pos".
95
91
function ! s: FirstFnArgPos (pos)
96
- " TODO: ignore comments.
97
- " TODO: handle escaped characters!
92
+ " TODO: ignore comments and handle escaped characters!
98
93
let lnr = a: pos [0 ]
99
94
let s: in_form_current_form = a: pos
100
95
call cursor (lnr , a: pos [1 ] + 1 )
@@ -234,9 +229,6 @@ function! s:StringIndent(delim_pos)
234
229
if m == # ' i' || (m == # ' n' && ! s: EqualsOperatorInEffect ())
235
230
" If in insert mode, or normal mode but "=" is not in effect.
236
231
let alignment = s: Conf (' clojure_indent_multiline_strings' , s: clojure_indent_multiline_strings )
237
- " standard: Indent in alignment with end of the string start delimiter.
238
- " traditional: Indent along left edge, like traditional Lisps.
239
- " pretty: Indent in alignment with string start delimiter.
240
232
if alignment == # ' traditional' | return 0
241
233
elseif alignment == # ' pretty' | return s: PosToCharCol (a: delim_pos )
242
234
else " standard
@@ -288,7 +280,7 @@ function! s:ListIndent(delim_pos)
288
280
let [_namespace, name] = split (sym, ' /' )
289
281
endif
290
282
291
- " TODO: replace `clojure_fuzzy_indent_patterns` with `clojure_indent_patterns`
283
+ " TODO: replace `clojure_fuzzy_indent_patterns` with `clojure_indent_patterns`?
292
284
for pat in s: Conf (' clojure_fuzzy_indent_patterns' , [])
293
285
if sym = ~# pat | return base_indent + 1 | endif
294
286
endfor
@@ -315,6 +307,7 @@ function! s:ListIndent(delim_pos)
315
307
return base_indent + (indent_style == # ' traditional' || sym_match == 0 )
316
308
endfunction
317
309
310
+ " TODO: make this usable from other Clojure-like languages.
318
311
function ! s: ClojureIndent ()
319
312
" Calculate and return indent to use based on the matching form.
320
313
let [form, pos] = s: InsideForm (v: lnum )
0 commit comments