Skip to content

Commit

Permalink
Fix indentation of subforms inside letfn forms
Browse files Browse the repository at this point in the history
  • Loading branch information
axvr committed Jan 10, 2021
1 parent 15ce7f6 commit 8b45ef1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ the default list below.

```vim
" Default
let g:clojure_special_indent_words = 'deftype,defrecord,reify,proxy,extend-type,extend-protocol,letfn'
let g:clojure_special_indent_words = 'deftype,defrecord,reify,proxy,extend-type,extend-protocol'
```

#### `g:clojure_align_multiline_strings`
Expand Down
2 changes: 1 addition & 1 deletion indent/clojure.vim
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ if exists("*searchpairpos")
endif

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

if !exists('g:clojure_align_multiline_strings')
Expand Down

0 comments on commit 8b45ef1

Please sign in to comment.