Hi I notice this problem a few versions ago, and it’s still here
- Folded code do not save, when exit Sublime Text (when is again opened, all code (folded before exit) is unfolded)
- Folding of some functions do not work (arrow on left are not displaying), for example in js:
$('#header').on('click', '.supportIcon', function() {
$('#supportDialog').dialog('open');
});
not working, but if I add one line, fold icon appears:
$('#header').on('click', '.supportIcon', function() {
console.log('supportIcon clicked.');
$('#supportDialog').dialog('open');
});