Sublime Forum

ST3: 3071: Code folding problems

#1

Hi I notice this problem a few versions ago, and it’s still here

  1. Folded code do not save, when exit Sublime Text (when is again opened, all code (folded before exit) is unfolded)
  2. 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');
});
0 Likes