Code folding is a feature of some text editors and IDEs that allow some text to be temporarily hidden or "collapsed" in order to hide detail.
4
votes
0answers
66 views
Why is Vim randomly corrupting my folds?
I have a small mapping for AltUp and AltDown that moves text up and down one line. I decided that these mapping should be made "fold aware" so that moving text up one line will move it past a closed ...
2
votes
1answer
49 views
How to don't save code in vim
is it possible to add text to a file, and make vim don't save it ?
To clarify the thing, I'm creating a vim-plugin that would add perfs informations
above functions, but I don't want these to be ...
0
votes
1answer
30 views
Eclipse folding plugin for android XML files?
Sometimes, just like java code, it's hard to read xml files in android, so folding could help.
Does anybody know of an eclipse plugin to fold xml tags ?
Is there anything available even for general ...
-1
votes
0answers
43 views
SplitView Folding [Indention] [closed]
im working on code-editor (winforms) and i just wanna ask how to make splitview in c# .
something like this1: http://www.codeproject.com/Articles/42490/Using-AvalonEdit-WPF-Text-Editor
(the line ...
0
votes
1answer
27 views
vim fold text with spaces in front
I'm trying to customize vim folding style and stuck with indentation. I know it has been asked multiple times here and I use this command (which seem to work for others) to test the appearance of ...
0
votes
0answers
63 views
Eclipse Aptana Javascript custom folding via #region and #endregion
I've read the following similar topics:
Aptana Folding/Collapsing javascript code
Regions/code collapse in JavaScript? (Aptana studio)
The answers however do not satisfy me. I want to decide ...
1
vote
0answers
52 views
Code folding issue eclipse
I'm having an issue with Eclipse folding javascript code improperly and I have no idea what the problem is. I'm in the process of building a game engine so I have a particular object constructor ...
1
vote
1answer
105 views
Insert ending foldmarker in vim with variable commentstring
I defined two macros for quickly inserting foldmarkers in Vim:
nnoremap <leader>mb A {{{<Esc>0
nnoremap <leader>me o# }}}<Esc>0zc
but quickly found them to be rather ...
0
votes
0answers
9 views
NetBeans locks the method folding after a lengthy method is opened?
I'm experiencing something weird in NetBeans
I have a method with a lot of code (300+ lines)
(the methods with normal amount of code (10-50 lines..) work fine)
Now, if I click the '+' at the left (to ...
1
vote
1answer
68 views
Don't fold me this way
Fold 3 below fold in lines below the end of the function. How can I make this fold in the expected way (to preserve the lines below the end of function):
Code :
(function() {
var w = window; ...
0
votes
3answers
64 views
How can i fold both code and comments in Vim?
Vim can fold Ruby code, but not comments.
After adding this in .vimrc to change foldmethod to comments, i can no longer fold code.
autocmd FileType ruby,eruby
\ set foldmethod=expr |
\ set ...
1
vote
1answer
84 views
vim syntax folding (unintentionally) creates nested folds
I'm trying to implement vim folding into an existing syntax file for the fountain.io markup language. The existing syntax file is here: http://www.vim.org/scripts/script.php?script_id=3880
But no ...
1
vote
1answer
61 views
How do I fold in vim through blank lines (rspec example)?
I am trying to get vim to fold the way I want, but an having troubles.
I use blank spaces in some of my test code to make it more legible, and I can't get vim to fold through the blank lines.
What I ...
0
votes
1answer
51 views
Is it possible to use multiple foldmarkers in vim?
I'm coding C# in Vim and I want to be able to fold both
+---- 3 lines: void SomeFunction()-----------------------------------------------
As well as
+---- 42 lines: #region The Answer To ...
1
vote
1answer
67 views
Vim java folding not recognizing folds
I was attempting to do some programming from a machine at work and I am unable to get Vim to recognize folds in my Java program. I've set the foldmethod to "syntax", but I get: "No Fold Found" when I ...
2
votes
4answers
127 views
Table-of-contents with VIM folding
A long time ago there was an editor called MultiEdit. It has a feature which I can not find in all powerful VIM. In MultiEdit I could press some hot key and it would show something like ...
1
vote
1answer
91 views
Sublime Text 2 folding tags
Is there functionality to fold only specified html tags in Sublime Text 2? For example:
<span>lot of text</span>.
0
votes
1answer
73 views
How to customize folding in vim-latex for my sections/commands?
I've installed the vim-latex-suite and I'd like to customize the folding for use with the labbook package. The labbook package uses \labday, \experiment, and \subexperiment in place of \chapter, ...
0
votes
0answers
119 views
Origami/accordion effect on Android
Can anyone tell me is there a tutorial out there to acheive similar to this on Android mobile devices?
GIF Image
YouTube Video
I have looked online but I dont even know what this effect is called? ...
2
votes
2answers
165 views
In Scala, how to foldleft when sometimes two elements should not turn into one element?
I have a list of Pair's which represent lines with a start index and end index. The type is (Int,Int) being a tuple of two integers.
Now I wish to join together any lines which are touching each ...
4
votes
1answer
80 views
Copying and closing folds in Vim
Despite using Vim for a decade, sometimes I still struggle with folding. Everything in this question is reproducible with no .vimrc in Vim 7.3. I am using foldmethod=marker with default foldmarkers.
...
3
votes
1answer
187 views
gvim code folding by clicking in margin
Is there any way in gvim to obtain a clickable code folding margin, similar to the one available in diff mode? Please refer the diff mode screenshots attached.
Note that I am comfortable using the ...
0
votes
2answers
138 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 ...
1
vote
1answer
52 views
Specify which function to fold
Is it possible to specify which functions should be folded by vim automatically.
In Netbeans, there is something like
// <editor-fold defaultstate="collapsed" desc="user-description">
...any ...
0
votes
1answer
129 views
How to fold C code with vim?
I've been trying to explore code folding options in Vim, and I have stumbled upon this stack-overflow question. While I have been able to put that into my vimrc, the problem I'm having is that it ...
0
votes
1answer
90 views
iPad coding app that allows code folding
I could get flamed for asking this, but here goes anyway...
Does anyone know of a coding app that you can use on an iPad and that allows you to fold your code? I can't find one.
I'll delete the ...
11
votes
2answers
232 views
How can I fold GNU C style functions in Vim correctly?
When writing C code, I use a mixture of GNU and K&R style. This means that the return value, each parameter and the opening body curly brace of a function is on its own line. I would also like to ...
1
vote
1answer
58 views
Vim syntax highlighting breaking for prototypes.h file due to folds. Where are folds saved?
When I include the line:
au BufWinEnter * silent! loadview "load folds
Which resumes my saved folds, it breaks the syntax highlighting... but only in files named specifically "prototypes.h"... ...
1
vote
0answers
31 views
how to show opened files in eclipse in more lines and forbid the folding
If you open more files, than can be squeezed into the bar of opened files, eclipse doesnt show new line for those files but instead collapse those files, can this behaviour be somewhere changed ?
1
vote
1answer
79 views
Programmatically folding in Eclipse
I'm looking for a (clean) way to programmatically fold/unfold methods (or a bit more lowlevel: an internval of lines) in a JDT-Editor in Eclipse.
I already read documentation about the basic concept ...
1
vote
2answers
54 views
How to make code for class implementations foldable for most editors?
Suppose I have the following definitions:
namespace test
{
class Test1
{
void someMethod(double a);
void someOtherMethod(double a);
//...
};
class Test2
...
0
votes
2answers
56 views
Is there any way to adjust the format of folded lines in vim?
Now my folded lines look like this:
+-- 123 lines: doSomeStuff();--------------------------
+-- 345 lines: doSomeOtherStuff();---------------------
I would like to remove everything before the ...
1
vote
0answers
91 views
Eclipse JavaScript Development Tools have strange “Collapse All” folding behavior
There are some strange things (probably a bug) with folding in JSDT when I collapse all folds (as in key command "Collapse All" in Window > Preferences > General > Keys). If I then expand only one ...
1
vote
0answers
280 views
Jquery Autocomplete: combobox + accent folding
I am trying to mix the Jquery Ui Autocomplete combobox and accent folding examples, but it seems to be beyond my skills. I have tried to replace the mentions to 'text' by 'normalize(text)' in the ...
4
votes
1answer
86 views
Fold only comments when file is opened in Vim
When I am viewing long code files with verbose comments in Vim, I would like to be able to load the files with comments folded but everything else unfolded. The current folding configuration I have in ...
3
votes
1answer
297 views
vim and sudo vim using different settings on openSUSE
I want vim to save folded code after I've closed the file. I've added the following code to both /etc/vimrc and ~/.vimrc:
au BufWinLeave ?* mkview
au BufWinEnter ?* silent loadview
When I open a ...
3
votes
1answer
111 views
code folding on a single line
EDIT I think pretty-mode is conceptually closer to what I want than the various folding mode, but I'd need to be able to replace strings with other strings, instead of a single character. As far as I ...
6
votes
1answer
566 views
How can I save text folds and folded code block data to .sublime-workspace?
Seems like there are no features in Sublime Text 2 that keep code folding between file sessions close\open.
I'd like to write plugin for this, but have a question.
Where should I store fold-data ...
0
votes
1answer
652 views
Coffee-bytes code folding plugin for eclipse not working
I have followed the advice here:
getting an overview perspective of all methods in a class in Eclipse
and here: http://itekblog.com/code-folding-in-eclipse-tutorial/#comment-150
But it never seems ...
1
vote
1answer
337 views
How to enable folding and 256 color support for vim/vi with Ubuntu 12-04
I just turned up a new Ubuntu 12-04 instance in Rackspace, and I cannot seem to enable folding and 256 color support for vim/vi.
I want to enable folding so that indents are automatically folded ...
2
votes
1answer
133 views
Vim folding - mark opened folds
Is there a way to see, where are opened folds in current File?
I personally have the problem when opening folds and moving around, I'm not able to find the line where the fold was started from! Maybe ...
0
votes
0answers
64 views
Can I define a block of code to fold in Zend Studio?
I want define a segment of code in my project to latter fold it or unfold it. Some kind of beginFoldBlock and endFoldBlock. Is that possible in Zend Studio?
1
vote
1answer
629 views
eclipse, How to active Folding for XML?
I have problem with folding when i'm writing code in XML. Actually, When I'm writing java code there is no problem and i can expand/collapse my codes.
However, in XML there is no folding icon ...
3
votes
1answer
225 views
folding multi-line-comments in emacs automatically
in my .emacs configuration, i have the following :
(defun fold-long-comment-lines ()
"This functions allows us to fold long comment lines
automatically in programming modes. Quite handy."
...
2
votes
1answer
2k views
Notepad++ fold all tags by default? [closed]
I have a huge XML code that I keep adding to. It has about 13.465 lines of code, and a LOT of tags. To keep everything organised (Because, the code is almost unreadable), I decided I could just fold ...
4
votes
3answers
100 views
Automatically expand fold when going to a line number
Is there a way to unfold code when going to a line number? For instance I type :35 where line 35 is folded, then I have to unfold that section manually to actually get to that line. I would like to ...
2
votes
1answer
65 views
Emacs: when byte-compile, it deletes any content inside foldings
Thank you very much in advance for the help.
I'm trying to byte-compile my init.le file.
The problem I have is that the resulting init.lec file is empty!
After some test I realised that any content ...
0
votes
1answer
166 views
add custom code folding in vim without losing current folding functionalities
I am using vim to edit my php files, and I am happy with it so far.
I use code folding as well, and it's working fine with PHP functions, classes, methods, etc.
However, when I have a big class with ...
2
votes
0answers
329 views
Text folding in richtextbox c#
my text is :
<Parag1 Level="One">
First text of parag1. Second text of parag1.
</Parag1>
<Parag2 Level="Two">
First text of parag2. Second text of parag2.
</Parag2>
<Parag3 ...
1
vote
3answers
108 views
How detect Vim buffer contains a fold?
looking for an advice how to programatically detect, if current Vim's buffer contains at least one fold defined ? Regardless if a fold is open or closed.
Attempting to call mkview only if there is a ...



