aboutsummaryrefslogtreecommitdiffstats
path: root/queries/make/folds.scm
Commit message (Collapse)AuthorAgeFilesLines
* feat!: drop modules, general refactor and cleanupChristian Clason2025-05-121-6/+0
|
* feat(make): fold `define` statements.Andreas Hartmann2025-02-271-0/+1
|
* chore: query formattingPham Huy Hoang2024-01-191-7/+5
|
* fix(fold): don't include whitespace end regionsLewis Russell2022-09-121-0/+7
Some languages that are difficult to parse via Treesitter may incorrectly include whitespace lines at the end of regions. This can makes the calculated folds sub-optimal. To recitfy, use a custom directive (trim), to calculate the range with the trailing whitespace lines removed. Note this only works if the region end column is 0. Also added folds for Make.