0

How can i make the folding custom in CodeMirror;

I try to make an extension that allows me to add a folding to templates where it begins with {% and ends with {% end for Brackets editor.

But in Codemirror only allows some kind of folding.

Bryan Oakley
  • 370,779
  • 53
  • 539
  • 685
Abdelouahab
  • 7,331
  • 11
  • 52
  • 82

1 Answers1

3

You'll have to write your own range-finding function. See the various ones that exist in addon/fold. comment-fold.js is probably the simplest.

Marijn
  • 8,691
  • 2
  • 34
  • 37