Code Folding Missing?

Post your questions and problem reports here

Moderator: kfury77

Forum rules
Please try to follow these guidelines. This will help to receive faster and more accurate response.
  • Check the Support section of the corresponding product first. Chances are you will find your answer there;
  • Do not create new topics for already reported problems. Add your comments to the existing topics instead;
  • Create separate topic for each problem request. Do NOT post a number of non-related problem reports in a single topic;
  • Give your topic a meaningful title. Titles such as "A question," "Bug report" and "Help!" provide others no clue what your message is about;
  • Include the version number of the software you are using;
  • This is not an official customer support helpdesk. If you need a prompt and official response, please contact our support team directly instead. It may take a while until you receive a reply in the forum;
Post Reply
rfresh1011
Posts: 3
Joined: Sun Dec 10, 2023 6:19 pm

Code Folding Missing?

Post by rfresh1011 »

I'm using ver 18.5 and don't seem to have any code folding capability. How can I check to know if 18.5 has code folding or not?
FrankC
Posts: 129
Joined: Thu Aug 18, 2011 3:28 pm
Contact:

Re: Code Folding Missing?

Post by FrankC »

What is that, code-folding?
https://020webdesign.nl
davidhelp
Posts: 35
Joined: Thu Jul 15, 2021 6:04 am

Re: Code Folding Missing?

Post by davidhelp »

Maybe they mean a +- next to a section of code so you can expand or contract it?
wangevelyn
Posts: 1
Joined: Tue Aug 18, 2026 5:20 am

Re: Code Folding Missing?

Post by wangevelyn »

FrankC wrote: Tue Apr 28, 2026 7:37 am What is that, code-folding?
Code folding basically lets you collapse sections of code, like functions, loops, or classes, so you don't have to scroll through everything at once. You can then expand them again when you need to see the details. Pretty handy when working with larger files.
For example, instead of seeing:

function calculateTotal() {
// 20 lines of code...
return total;
}

You can fold it to something like:

function calculateTotal() { ... }
Post Reply