comparison runtime/doc/indent.txt @ 23931:5b37a0bf7e3a

Update runtime files Commit: https://github.com/vim/vim/commit/942db23c9cb7532d68048530d749eb84ca94d0cd Author: Bram Moolenaar <Bram@vim.org> Date: Sat Feb 13 18:14:48 2021 +0100 Update runtime files
author Bram Moolenaar <Bram@vim.org>
date Sat, 13 Feb 2021 18:15:04 +0100
parents 1b345fb68ae3
children babd9f1dbe12
comparison
equal deleted inserted replaced
23930:4997281ea56c 23931:5b37a0bf7e3a
608 Clojure indentation differs somewhat from traditional Lisps, due in part to 608 Clojure indentation differs somewhat from traditional Lisps, due in part to
609 the use of square and curly brackets, and otherwise by community convention. 609 the use of square and curly brackets, and otherwise by community convention.
610 These conventions are not universally followed, so the Clojure indent script 610 These conventions are not universally followed, so the Clojure indent script
611 offers a few configurable options, listed below. 611 offers a few configurable options, listed below.
612 612
613 If the current vim does not include |searchpairpos()|, the indent script falls 613 If the current vim does not include searchpairpos(), the indent script falls
614 back to normal 'lisp' indenting, and the following options are ignored. 614 back to normal 'lisp' indenting, and the following options are ignored.
615 615
616 *g:clojure_maxlines* 616 *g:clojure_maxlines*
617 617
618 Set maximum scan distance of |searchpairpos()|. Larger values trade 618 Set maximum scan distance of searchpairpos(). Larger values trade performance
619 performance for correctness when dealing with very long forms. A value of 0 619 for correctness when dealing with very long forms. A value of 0 will scan
620 will scan without limits. 620 without limits.
621 > 621 >
622 " Default 622 " Default
623 let g:clojure_maxlines = 100 623 let g:clojure_maxlines = 100
624 < 624 <
625 *g:clojure_fuzzy_indent* 625 *g:clojure_fuzzy_indent*