Code folding for all HTML tags

Let us know what you would like to see in the next version of this software

Moderator: kfury77

Forum rules
Please follow these guidelines when posting feature requests. This will help to increase the value of your contribution.
  • Do not create new topics for already requested features. Add your comments to the existing feature request topics instead;
  • Create separate topic for each feature suggestion. Do NOT post a number of non-related feature suggestions in a single topic;
  • Give your topic a meaningful title. Do NOT create topics with meaningless titles, such as "My Suggestion" or "My Problem".
Please note that we DO READ all suggestions, even if a reply is not posted. Thanks!
Post Reply
FiftyStars
Posts: 7
Joined: Fri Mar 01, 2013 3:40 pm

Code folding for all HTML tags

Post by FiftyStars »

Hi, code folding do not working with some tags(<form>,<select>,<tr> etc). IMHO its not convenient. Please add code folding for all tags.
User avatar
Aivars
Blumentals Software Developer
Posts: 2462
Joined: Thu Aug 22, 2002 1:40 pm
Location: Latvia

Re: Code folding for all HTML tags

Post by Aivars »

I think only selective tags are foldable to avoid cluttering screen with code folding pluses [+], but I'll add this to the suggestions list so that we can discuss it and get to the bottom to it.
Blumentals Software Programmer
FiftyStars
Posts: 7
Joined: Fri Mar 01, 2013 3:40 pm

Re: Code folding for all HTML tags

Post by FiftyStars »

tables may be very huge so i think it would be better to see

Code: Select all

!DOCTYPE html
<head>
</head>
<body>
	<table>
		<thead>
		</thead>
		<tbody>
+			<tr>...</tr>
+			<tr>...</tr>
+			<tr>...</tr>
+			<tr>...</tr>
		</tbody>
	</table>
+	<select>...</select>
+	<form>...</form>
</body>
than

Code: Select all

!DOCTYPE html
<head>
</head>
<body>
	<table>
		<thead>
		</thead>
		<tbody>
			<tr>
				<th>
					blablabla
				</th>
				<th>
					blablabla
				</th>
			</tr>
			<tr>
				<th>
					blablabla
				</th>
				<th>
					blablabla
				</th>
			</tr>
			<tr>
				<th>
					blablabla
				</th>
				<th>
					blablabla
				</th>
			</tr>
			<tr>
				<th>
					blablabla
				</th>
				<th>
					blablabla
				</th>
			</tr>
		</tbody>
	</table>
	<select>
		<option>xxx</option>
		<option>xxx</option>
		<option>xxx</option>
		<option>xxx</option>
	</select>
	<form>
	<label>
		<input />
	</label>
	</form>
</body>
Its not necessary to see completed parts of code, its enough to see basic structure and current part of code.Concise code is a nice and convenient. IMHO
User avatar
Aivars
Blumentals Software Developer
Posts: 2462
Joined: Thu Aug 22, 2002 1:40 pm
Location: Latvia

Re: Code folding for all HTML tags

Post by Aivars »

I have added your suggestion to the list.
Blumentals Software Programmer
chechnyan
Posts: 37
Joined: Mon Oct 01, 2012 4:37 pm

Re: Code folding for all HTML tags

Post by chechnyan »

code folding is a must .and i need it too
hope you guys implement it in the near future.
Post Reply