summaryrefslogtreecommitdiff
path: root/src/testdir/test_cindent.vim
Commit message (Collapse)AuthorAgeFilesLines
* patch 8.2.1432: various inconsistencies in test filesv8.2.1432Bram Moolenaar2020-08-121-1/+0
| | | | | | | Problem: Various inconsistencies in test files. Solution: Add modelines where they were missing. Use Check commands instead of silently skipping over tests. Adjust indents and comments. (Ken Takata, closes #6695)
* patch 8.2.0864: pragmas are indented all the way to the leftv8.2.0864Bram Moolenaar2020-05-311-0/+36
| | | | | | Problem: Pragmas are indented all the way to the left. Solution: Add an option to indent progmas like normal code. (Max Rumpf, closes #5468)
* patch 8.2.0363: some Normal mode commands not testedv8.2.0363Bram Moolenaar2020-03-081-1/+10
| | | | | Problem: Some Normal mode commands not tested. Solution: Add more tests. (Yegappan Lakshmanan, closes #5746)
* patch 8.2.0156: various typos in source files and testsv8.2.0156Bram Moolenaar2020-01-261-3/+6
| | | | | Problem: Various typos in source files and tests. Solution: Fix the typos. (Emir Sari, closes #5532)
* patch 8.2.0112: illegal memory access when using 'cindent'v8.2.0112Bram Moolenaar2020-01-121-0/+9
| | | | | Problem: Illegal memory access when using 'cindent'. Solution: Check for NUL byte. (Dominique Pelle, closes #5470)
* patch 8.1.1955: tests contain typosv8.1.1955Bram Moolenaar2019-09-011-2/+2
| | | | | Problem: Tests contain typos. Solution: Correct the typos. (Dominique Pelle)
* patch 8.1.1915: more functions can be used as methodsv8.1.1915Bram Moolenaar2019-08-231-3/+3
| | | | | Problem: More functions can be used as methods. Solution: Make various functions usable as a method.
* patch 8.1.1585: :let-heredoc does not trim enoughv8.1.1585Bram Moolenaar2019-06-241-57/+57
| | | | | | Problem: :let-heredoc does not trim enough. Solution: Trim indent from the contents based on the indent of the first line. Use let-heredoc in more tests.
* patch 8.1.1434: test 3 is old stylev8.1.1434Bram Moolenaar2019-05-311-1/+5124
| | | | | Problem: Test 3 is old style. Solution: Turn into a new style test. (Yegappan Lakshmanan, closes #4460)
* patch 8.1.1362: code and data in tests can be hard to readv8.1.1362Bram Moolenaar2019-05-201-22/+38
| | | | | Problem: Code and data in tests can be hard to read. Solution: Use the new heredoc style. (Yegappan Lakshmanan, closes #4400)
* patch 8.1.1336: some eval functionality is not covered by testsv8.1.1336Bram Moolenaar2019-05-161-0/+10
| | | | | Problem: Some eval functionality is not covered by tests. Solution: Add a few more test cases. (Masato Nishihata, closes #4374)
* patch 8.0.1041: bogus characters when indenting during visual-block appendv8.0.1041Bram Moolenaar2017-09-021-2/+22
| | | | | | Problem: Bogus characters appear when indenting kicks in while doing a visual-block append. Solution: Recompute when indenting is done. (Christian Brabandt)
* patch 8.0.0999: indenting raw C++ strings is wrongv8.0.0999Bram Moolenaar2017-08-261-2/+11
| | | | | Problem: Indenting raw C++ strings is wrong. Solution: Add special handling of raw strings. (Christian Brabandt)
* patch 8.0.0431: 'cinoptions' cannot set indent for extern blockv8.0.0431Bram Moolenaar2017-03-081-0/+60
| | | | | Problem: 'cinoptions' cannot set indent for extern block. Solution: Add the "E" flag in 'cinoptions'. (Hirohito Higashi)
* patch 8.0.0423: changing 'cinoptions' does not always workv8.0.0423Bram Moolenaar2017-03-051-0/+16
Problem: The effect of adding "#" to 'cinoptions' is not always removed. (David Briscoe) Solution: Reset b_ind_hash_comment. (Christian Brabandt, closes #1475)