bsegraves / custom-folds

Atom plugin for defining custom markers for foldable regions.
MIT License
24 stars 9 forks source link

not working in php #15

Closed justijndepover closed 7 years ago

justijndepover commented 7 years ago

Hi,

The package (1.9.0) doesn't seem to work in php. I use it like this:

// <editor-fold>
// </editor-fold>

and nothing happens. But if i use it like this:

/* <editor-fold>
</editor-fold> */

the last tag highlights but the first one doesn't.

justijndepover commented 7 years ago

I've managed it to work: it has to be used like this:

/*
<editor-fold>
*/

/*
</editor-fold>
*/

But it would be nice if you could use the first method i described:

// <editor-fold>
// </editor-fold>