summaryrefslogtreecommitdiff
path: root/src/testdir/test_indent.vim
Commit message (Collapse)AuthorAgeFilesLines
* patch 9.0.0625: too many delete() calls in testsv9.0.0625Bram Moolenaar2022-09-291-2/+1
| | | | | Problem: Too many delete() calls in tests. Solution: Use deferred delete where possible.
* patch 9.0.0363: common names in test files causes tests to be flakyv9.0.0363Bram Moolenaar2022-09-021-3/+3
| | | | | Problem: Common names in test files causes tests to be flaky. Solution: Use more specific names.
* patch 8.2.5122: lisp indenting my run over the end of the linev8.2.5122Bram Moolenaar2022-06-181-0/+10
| | | | | Problem: Lisp indenting my run over the end of the line. Solution: Check for NUL earlier.
* patch 8.2.4792: indent operator creates an undo entry for every linev8.2.4792Bram Moolenaar2022-04-191-0/+23
| | | | | Problem: Indent operator creates an undo entry for every line. Solution: Create one undo entry for all lines. (closes #10227)
* patch 8.2.3754: undesired changing of the indent of the first formatted linev8.2.3754Bram Moolenaar2021-12-061-6/+32
| | | | | Problem: Undesired changing of the indent of the first formatted line. Solution: Do not indent the first formatted line.
* patch 8.2.3615: wrong indent in first line if re-formatting with indent exprv8.2.3615Christian Brabandt2021-11-181-0/+75
| | | | | | | Problem: When re-formatting with an indent expression the first line of a paragraph may get the wrong indent. (Martin F. Krafft) Solution: Apply the correct indenting function for the first line. (Christian Brabandt, closes #9150, closes #9056)
* patch 8.2.0416: test leaves file behindv8.2.0416Bram Moolenaar2020-03-191-0/+2
| | | | | Problem: Test leaves file behind. Solution: Delete the file.
* patch 8.2.0363: some Normal mode commands not testedv8.2.0363Bram Moolenaar2020-03-081-0/+42
| | | | | Problem: Some Normal mode commands not tested. Solution: Add more tests. (Yegappan Lakshmanan, closes #5746)
* patch 8.2.0358: insufficient testing for indent.cv8.2.0358Bram Moolenaar2020-03-061-0/+101
Problem: Insufficient testing for indent.c. Solution: Add indent tests. (Yegappan Lakshmanan, closes #5736)