The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
1answer
29 views

When custom mapping is set for :cn, :cp vim doesn't expand the fold that contains an error

I have noticed that when I use :cn :cp directly, vim always expands folds for me. But when I set my custom mapping to call :cn like :map <leader>n :cn<cr>, vim doesn't expand foldings when ...
1
vote
2answers
58 views

Code-Folding Code

im working on code-editor (WinForms) and now I need to work on code-folding something like this 1: i already find some opensource code and project but almost everything has a reference, .dll, or ...
1
vote
0answers
21 views

Code folding in external files with knitr and RStudio

I can find no way to insert syntactically acceptable RStudio style folds into an external R code file that is set up for use from a knitr document. Or am I missing something. There are several ways ...
1
vote
1answer
58 views

Eclipse: Java: Folding Code Blocks Smaller Than A Method

I'm new to Eclipse. I haven't found a way to fold blocks of code in Java smaller than a method. I have a legacy project to maintain with huge and frequent nested conditionals. Refractoring is not ...
0
votes
0answers
86 views

Coffe Bytes Java Folding

I recently downloaded Coffe Bytes for Eclipse Juno and followed this tutorial to install How to use Coffee-Bytes code folding but when I do somthing like the following // {{ fold block public ...
2
votes
2answers
75 views

Vim Code Folding for Scilab

I've just recently started to use the folding functionality of vim and it's very helpful for the languages that it works really well for. My issue lies in the way vim comments out the fold markers in ...
1
vote
2answers
94 views

Aptana 3 Code Folding

Ive started using Aptana 3 today and really like it, However I'm struggling to find out if I can code fold to specific levels. For example I can push Ctrl+Shift+Divide and will collapse EVERYTHING ...
0
votes
0answers
28 views

Is there a way to collapse all code blocks in PhpEclipse?

I found out, that this solution is not working in phpEclipse: There is a hotkey, mapped by default to Ctrl+Shift+NUM_KEYPAD_DIVIDE. You can change it to something else via Window -> ...
0
votes
2answers
143 views

Eclipse folding with java

Working with eclipse in a java collapsed file if i try to write a method between two collapsed methods when I write public and press space automatically the ide collapses the word public inside the ...
0
votes
2answers
514 views

Code folding in Eclipse

I used this way to get code folding in Netbeans: // <editor-fold defaultstate="collapsed" desc=" description"> .... // </editor-fold> and Visual Studio: #region description ... ...
0
votes
3answers
76 views

Can Xcode fold multiple methods at once, as a set?

I have about two thousand lines of code in my class and near fifty methods inside. I know I can divide them by #pragma mark SomeMethodsSet and see that listed in the jump bar above, but is there some ...
1
vote
1answer
61 views

How to disable code folding in Qt Creator?

I have a project I'm working on in Qt Creator that requires breakpoints to debug. I would like to be able to add a breakpoint by clicking next to the line number, because it is intuitive to me. ...
1
vote
0answers
58 views

xcode objective x framework code folding

I am looking at trying to write my own simple html / php text editor, one of the features is code-folding / collapsible rows based on open { and close } ( please wiki lookup code-folding if you do not ...
1
vote
0answers
76 views

VC# Is there anyway to add code folding [closed]

I was wondering if it was possible to create a code folding code for my own Coding Program for another language. I have been searching around and still wasn't able to find anything on this. Btw i am ...
0
votes
1answer
61 views

how can I unfold my php code in emacs?

I'm a newbie in emacs 23.2.1. I want to edit my php files, and I got emacs' php mode from https://code.google.com/p/mewde/, but when I open php files and enter php-mode,this mode automatically folded ...
0
votes
1answer
198 views

Zend Studio 9 - Code folding

Is there any trick to collapse one portion of code in Zend Studio 9? I can collapse functions and/or classes, but there is no support for "if statements" folding nor selection.
3
votes
1answer
755 views

Code folding (#pragma region) in Qt creator

Is there something similar to explicit code regions for folding in Qt Creator: #pragma region Region_1 void Test() {} void Test2() {} void Test3() {} #pragma endregion Region_1 I can see folding ...
0
votes
0answers
37 views

How to maintain source code folding between networked PCs?

How do programmers here maintain code fold states for a given source code file when you are programming on multiple machines? Example: I program at work and at home. I use DropBox to sync my code. ...
0
votes
1answer
315 views

Unable to toggle code folding in Aptana PyDev editor

Does anyone know if it is possible to toggle code folding to expand/collapse code under APtana PyDev editor? I looked around and it seems that all you need to do is go to Preferences -> General -> ...
0
votes
1answer
449 views

Can I configure IntelliJ Idea to recognize custom code folding regions designation?

I like c# #region...#endregion facility a lot (some people say that's a bad habit but let's not discuss that). I miss it a lot when coding other languages. The obvious way to "add" it to other ...
-3
votes
2answers
357 views

Best C++ ***Editor*** for windows [closed]

When I first began programming, I used Visual Studio. I liked it; the code completion, code folding, and syntax highlighting features were surprisingly convenient. Now, 5 years later, I am ...
1
vote
1answer
345 views

Collapse all inactive preprocessor blocks in Visual Studio

I am working with some third-party code that has a lot of conditional macros. Visual Studio is quite good at detecting the inactive code, i.e. code wrapped in #if...#endif that won't be compiled and ...
0
votes
1answer
118 views

Opening New Tab Undoes Code Folding in Vim

I have an HTML file with the CSS in the head. Usually I open the file in 2 tabs, so I can switch between the HTML and CSS easily, but I would also like to fold most of the code (especially the ...
0
votes
1answer
463 views

How to show only methods and class-members?

I am trying to find out whether NetBeans v7.1 can fold everything in a Java class except: class name member names method names So this simple class: public class Example { private int ...
3
votes
1answer
693 views

TextMate: remove trailing spaces and save

I'm using this script to remove trailing spaces and then save the file: http://mjijackson.com/2009/01/textmate-macro-remove-trailing-space-and-save The problem is that all my code foldings expand ...
0
votes
2answers
1k views

How to implement “CodeIgniter 2.0” code completion capabilities with Notepad++ ?

How could I make Notepad++ have an intellisense for CodeIgniter 2.0 so that if I press Ctrl + SpaceBar on the keyboard code suggestions would be shown?
1
vote
2answers
258 views

Emacs feature similar to JEdit's indent folding mode? [duplicate]

Possible Duplicate: Emacs equivalent of Vim's foldmethod = indent JEdit has a mode (specifically, folding mode: indent, in Options) that lets you fold code blocks based purely on ...
0
votes
1answer
678 views

Eclipse PDT code folding problem

I've recently been using Eclipse with PDT for PHP development. When writing classes I tend to use the following style for class constants and properties: class Foo extends Bar { const ...
2
votes
1answer
313 views

Visual Studio C# 2008: Code Folding Problem when Typing

I have the following problem with code folding: if I have a class with folded methods, and I insert code in between these methods, the lower code unfolds automatically. E.g.: class A { void ...
0
votes
1answer
751 views

Can Aptana do code folding?

I would like to code folding in aptana 2 but I cannot figure out how to do it. How do you do it?
4
votes
4answers
2k views

Aptana Code Folding?

When i try to use code folding in Aptana it doesn't seem to be working i haven't changed any shortcuts and i can`t get it work the default shortcut is Ctrl+Numpad_Divide any suggestions ?
0
votes
1answer
433 views

Improved UltraEdit wordfile for Ruby? (code folding)

The default Ruby wordfile in UltraEdit does not support code folding. Is there a Ruby wordfile for UltraEdit that does support code folding?
4
votes
3answers
4k views

XCode enable Code-Folding by default

Is there a way to tell XCode fold methods/functions by default when opening a file?
0
votes
1answer
318 views

Xcode save code folding?

I know it's not directly related to programming, but what better place then stackoverflow right? So code folding is an awesome feature which I love, but does anyone know if there is a way to get ...
2
votes
1answer
382 views

Is there a way to make the “Code Folding” Stay Folded In Delphi 2010

I absolutely love the Code Folding feature inside Delphi 2010. However, each time start Delphi 2010 and reopen my project the code I had peviously folded down is no longer folded. Is there a way to ...
1
vote
1answer
1k views

Zend Studio 7 code folding

just another simple question (as always). I have tried to find out how to fold a PHP function using shortcut in Zend Studio 7 and have found on the Preferences section that the shortcut is ...
8
votes
20answers
3k views

Any standard way to divide a class into regions?

I was wondering if there is some standard way to divide a class into regions. almost every project is using a different "region approach" (even classes within the same project). We pay so much ...
8
votes
6answers
7k views

Code folding in Emacs [duplicate]

Possible Duplicate: How to achieve code folding effects in emacs An excellent feature of Dreamweaver is code folding of any lines of text -- recursively! It's fantastic, I can fold any ...
38
votes
8answers
15k views

How to achieve code folding effects in Emacs?

Whats the best way to do achieve something like code folding, or the type of cycling that org-mode uses. What would be the best solution in elisp to create this type of behavior? EDIT: I'm sorry I ...
2
votes
2answers
1k views

Is there a way to hide annotations in Netbeans or Eclipse?

Maybe a dumb question, but it would be nice if there was a way to hide or collapse Java annotations when viewing source in Netbeans (or Eclipse). I'm not finding an option and a quick search didn't ...
1
vote
5answers
2k views

Is there any way to get code folding in Delphi 7?

I know this is a long shot - but is there any way at all to get code folding into Delphi 7? I'm working on some .. "suboptimal" .. code. Sometimes I really need to fold bits away to grok a ...