Skip to content

Commit 8b45ef1

Browse files
committed
Fix indentation of subforms inside letfn forms
Fixes: guns/vim-clojure-static#56 Related: guns/vim-clojure-static#83
1 parent 15ce7f6 commit 8b45ef1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ the default list below.
140140

141141
```vim
142142
" Default
143-
let g:clojure_special_indent_words = 'deftype,defrecord,reify,proxy,extend-type,extend-protocol,letfn'
143+
let g:clojure_special_indent_words = 'deftype,defrecord,reify,proxy,extend-type,extend-protocol'
144144
```
145145

146146
#### `g:clojure_align_multiline_strings`

indent/clojure.vim

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ if exists("*searchpairpos")
4040
endif
4141

4242
if !exists('g:clojure_special_indent_words')
43-
let g:clojure_special_indent_words = 'deftype,defrecord,reify,proxy,extend-type,extend-protocol,letfn'
43+
let g:clojure_special_indent_words = 'deftype,defrecord,reify,proxy,extend-type,extend-protocol'
4444
endif
4545

4646
if !exists('g:clojure_align_multiline_strings')

0 commit comments

Comments
 (0)