Code folding for all HTML tags
Moderator: kfury77
Forum rules
Please follow these guidelines when posting feature requests. This will help to increase the value of your contribution.
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".
-
- Posts: 7
- Joined: Fri Mar 01, 2013 3:40 pm
Code folding for all HTML tags
Hi, code folding do not working with some tags(<form>,<select>,<tr> etc). IMHO its not convenient. Please add code folding for all tags.
Re: Code folding for all HTML tags
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
-
- Posts: 7
- Joined: Fri Mar 01, 2013 3:40 pm
Re: Code folding for all HTML tags
tables may be very huge so i think it would be better to see
than
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
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>
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>
Re: Code folding for all HTML tags
I have added your suggestion to the list.
Blumentals Software Programmer
Re: Code folding for all HTML tags
code folding is a must .and i need it too
hope you guys implement it in the near future.
hope you guys implement it in the near future.