swekaj / php-foldexpr.vim

Vim folding for PHP with foldexpr
MIT License
41 stars 10 forks source link

Fold not closed on certain multi line arrays #20

Open artfulrobot opened 9 years ago

artfulrobot commented 9 years ago

The following:

<?php
$a = Array(
  1,
  2,
  3,
  4, );

$this_should_not_fold = [];

folds to:

$a = Array(...];------------    7 lines +-

i.e. the fold is too greedy; the end of the array is not noticed.