Tagged Questions
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.
22
votes
9answers
7k views
What is the recommended way to use vim folding for python coding
I am interested in enabling code folding in vim for python coding.
I have noticed multiple ways to do so.
Does anyone have a preferred way to do python code folding in vim?
I.e,
do you have a ...
15
votes
4answers
8k views
how to implement regions/code collapse in javascript
How can you implement regions a.k.a. code collapse for JavaScript in Visual Studio?
If there are hundreds of lines in javascript, it'll be more understandable using code folding with regions as in ...
15
votes
4answers
11k views
Is there any way to manually fold code in Eclipse?
Is there any way to manually create fold points in code in Eclipse? I know how to enable folding and how to set the auto preferences, but i like being able to set my own fold points so I can ignore ...
15
votes
23answers
2k views
How do you feel about code folding?
For those of you in the Visual Studio environment, how do you feel about wrapping any of your code in #regions? (or if any other IDE has something similar...)
12
votes
8answers
3k views
How to implement a list fold in Java
I have a List and want to reduce it to a single value (functional programming term "fold", Ruby term inject), like
Arrays.asList("a", "b", "c") ... fold ... "a,b,c"
As I am infected with ...
11
votes
1answer
652 views
Python code-folding in emacs?
I have many classes and def ...
I want have + and - key before class and def for collapse class or open it ( toggle it )
how i can do this?
10
votes
1answer
239 views
Syntax-highlight Python in a vim fold line
I have found that code-folding helps me organize my files better. Thus, at the bottom of my ~/.vimrc, I enable vim code folding by default:
""Folding
set foldmethod=indent
set foldnestmax=2
nnoremap ...
9
votes
3answers
359 views
Vim: Fold top level folds only
I have a long code file with syntax folding in Vim.
I know how to open all folds (fR) or close all folds (fM), and I know how to increase or decrease the foldlevel (fm, fr).
However when I increase ...
9
votes
4answers
2k views
How do you know when to use fold-left and when to use fold-right?
I'm aware that fold-left produces left-leaning trees and fold-right produces right-leaning trees, but when I reach for a fold, I sometimes find myself getting bogged down in headache-inducing thought ...
8
votes
4answers
248 views
Page feed symbol display in Vim
One of the nice things about Vim is that one can insert a page feed symbol (Ctrl-L in Insert mode), which delegates the printer to start printing the following on a new page. It shows as ^L in text.
...
8
votes
1answer
714 views
Code folding for LaTeX in Emacs
Is there an Emacs minor-mode (or piece of elisp code) that lets you selectively hide/show environments while in LaTeX mode? For instance, I would like to move to the beginning of a long \begin{figure} ...
8
votes
1answer
429 views
Emacs persistent folding mode
There are plenty of ways to fold code in Emacs and I've settled in on using the outline minor mode... it works great!
However, I really want my folding to be persisted when I close and re-open files. ...
7
votes
2answers
610 views
Custom Java Code Folding for Eclipse Helios
I spent a lot of time googling, now I'll try it here. Some of you might know the "regions" available in Microsoft Visual Studio, which allow you to collaps an arbitrary part of your code to just a ...
7
votes
2answers
802 views
combine python-mode with org-mode for emacs
I combined org-mode with lisp-mode to achieve beautiful code folding in emacs for lisp code: lisp-orgi-mode.
Basically, I use ';' instead of '*' as the heading character. For comments, I just put a ...
6
votes
2answers
270 views
Two fold methods at the same time
I'd like to set two methods for folding
:set foldmethod=indent and retain all its features
hiding comments with
:set foldmethod=marker
:set foldmarker=/*,*/
I found out that this is not ...
6
votes
3answers
652 views
Disabling double line spacing in code folding in VS2010
I use the code folding commands in Visual Studio 2008 all the time - e.g.
ctrl + m, ctrl + o (collapse all)
ctrl + m, ctrl + m (toggle expand/collapse of code block)
Visual Studio 2010 has the ...
6
votes
5answers
1k views
Why is there no code-folding in emacs?
There are several questions on SO about how to get code folding in emacs, without having to add any special characters like "markers" in the comments for example. Someone said that there was "no ...
6
votes
3answers
3k views
Scala: how to merge a collection of Maps
I have a List of Map[String, Double], and I'd like to merge their contents into a single Map[String, Double]. How should I do this in an idiomatic way? I imagine that I should be able to do this ...
6
votes
3answers
1k views
Emacs equivalent of Vim's foldmethod = indent
Question: Does Emacs have a canonical equivalent of Vim's Folding with Foldmethod=indent?
I am particularly interested in something that can work alongside any Emacs major mode and any file. The ...
5
votes
3answers
146 views
NetBeans: Code folds do not appear on one of my PHP files
I'm using the NetBeans IDE. Normally, every PHP file in my project has code folds:
However, one PHP file in my project doesn't have code folds:
The file has no syntax errors. I've tried ...
5
votes
1answer
298 views
Folding tags in emacs nxml-mode
The interwebs are full of ancient doctrines for folding code in the Glorious Emacs Editor. Among them are folding.el, outline-minor-mode, and fold-dwim.el. Alas, my poor unenlightened mind cannot ...
5
votes
1answer
3k views
notepad++ user defined regions with folding
I can't figure out how to configure notepad++ to display regions for user defined keywords.
I have a big trace file which shows the start and the end of a procedure.
The trace file looks like this:
...
5
votes
3answers
1k views
How can I disable code folding in vim with vim-latex?
I have tried the usual approaches, and have read :help tex.vim
(see : http://vimdoc.sourceforge.net/htmldoc/syntax.html )
I've taken a brief look at syntax/tex.vim, but can't see how to disable it ...
5
votes
4answers
224 views
Can I have Vim ignore a license block at the top of a file?
Is there a way to use folds or some other Vim-script black magic to hide license blocks at the top of files? I don't like that they take up such a large section of my editing pane; I like to get a ...
5
votes
3answers
1k views
How can I share my folds in VIM?
I am in a project with 3 people. We need to have the same folds in Vim for each member. How can I share my folds?
[Feedback]
I understood one important thing: Google ignores signs, such as {{{, so ...
4
votes
2answers
87 views
JS, jQuery loose-leaf calendar effect plugin
Is there JS plugin,e.g. jQuery or any other,that imitates effect of loose-leaf calendar?
Here is image of calendar.
It's needed, that top half falls into bottom when changing date in calendar.
...
4
votes
1answer
126 views
Vim: How do I start a syntax-fold on the line after a regexp match? (python functions)
I want to fold function definitions in python code using Vim syntax based folding. So I've added the following to my .vim/syntax/python.vim :
setlocal foldmethod=syntax
syn sync fromstart
syn region ...
4
votes
5answers
431 views
What code folding plugins work on Eclipse 3.6?
i am new to java development environment & i find it diffecult to manage my code properly. .Net provides the #regions which is a good solution for code management.
I am using Eclipse environment ...
4
votes
3answers
474 views
VS2010 - Code folding for comment blocks inside method blocks
Does anyone know of an extension that allows comment blocks inside method blocks to be folded (outlined), just like methods and regions, etc.?
There are times when I want to comment out sections of ...
4
votes
3answers
425 views
Confusion about vim folding - how to disable?
Probably I'm just noob that I don't get the idea of how cool vim folding is, but how it works for me is just annoying :)
When I open the file it looks like this: ...
4
votes
1answer
616 views
How do I enable automatic folds in Vim?
How do I enable automatic folding in Vim? set foldmethod=syntax doesn't seem to do much of anything.
4
votes
2answers
351 views
How do you enable block folding for Python comments in TextMate?
In TextMate 1.5.10 r1623, you get little arrows that allow you to fold method blocks:
Unfortunately, if you have a multi-lined Python comment, it doesn't recognize it, so you can't fold it:
def ...
4
votes
1answer
181 views
vim folds open up when giving an unmatched opening brace/parenthesis
I often come across the situation where I have lots of lines folded and I am writing, say a new block of code, above these folds. As soon as I type a '{', all the folds below open up. Even though it ...
4
votes
2answers
184 views
Implicit Folding in TEXTAREA with Javascript
I'd like to be able to create a type of folding in xhtml textareas using Javascript/jQuery. For example, given the following text:
ABC [123] DEF
I'd like to have [123] reduce to [] when the cursor ...
4
votes
1answer
286 views
auto-fold Oracle inline views in Vim using .vimrc
I've seen magical Vim commands before that you could add to your .vimrc to have folds created upon opening a particular type of file. I remember having such code that would create the folds, upon ...
4
votes
1answer
167 views
How to collapse all blocks of #ifdefs that will not be compiled in Visual Studio?
The problem is the following: the codebase have many files with multiple blocks compiled conditionally for each of target platforms using the #if defined(...) directive. Since the typical programmer ...
4
votes
3answers
162 views
Stopping VIM from opening all subsequent closed folds when creating a new one
I noticed that when I create a new fold (I'm using foldmethod=marker) all the folds below the one I'm creating are automatically opened, is there a way to prevent this and leave them closed?
I can't ...
3
votes
4answers
155 views
Folding over a list of Options to Find First or Last Some
I'm trying to fold over a list of Options in order return the first(or last) Some value or None if there aren't any Some values.
scala> val opts = List(None, Some(1), None, Some(2), None)
opts: ...
3
votes
2answers
192 views
Automatic ruby folding in vim
Is there a way that I can setup vim to automatically fold ruby source files, but only fold at the method level regardless of the level that they are defined?
So it will fold when I have:
class ...
3
votes
3answers
165 views
Is there a way to fold less than a line in vim?
since I´m doing a lot of latex editing in vim, I was wondering if it´s possible to fold only parts of a line.
For example:
I´d like to fold "\section{Hello}" simply to "Hello"(in another color) or ...
3
votes
1answer
89 views
Is it possible in any Java IDE to collapse the type definitions in the source code?
Lately I often have to read Java code like this:
LinkedHashMap<String, Integer> totals = new LinkedHashMap<String, Integer>(listOfRows.get(0))
for (LinkedHashMap<String, Integer> ...
3
votes
5answers
1k views
How to implement code folding in C#
I'm beginning to work on a COBOL/BASIC IDE at work (to replace the one that we have currently that's a slight step up from Notepad). It'll be made in C#. The management is really interested in ...
3
votes
4answers
461 views
Fold function in vim
Is there any way or tools to fold function in vim,like Visual Studio or Eclipse?
Best Regards,
3
votes
3answers
2k views
Collapse comments and all functions in vim/gvim
I'm a novice user to vim and I haven't been able to find in the internet how to collapse functions and I've figured out how to collapse the argument list in C with zfa} and zfa). but I can't figure ...
3
votes
2answers
253 views
Preventing vim to auto-expand folds
I'm using foldmethod=marker and #{{{ #}}} markers in Python code.
After typing #{{{ vim automatically expands all folds below the cursor.
Is it possible to turn this off?
3
votes
2answers
3k views
Vim syntax based folding with php
I have downloaded php.vim file, which contains PHP-based syntax information. It should be able to provide syntax based folding, but I can't make it work for some reason.
I have set :let g:php_folding ...
3
votes
1answer
400 views
How can I autofold POD in Perl with vim?
I'm trying to edit files with vim and get the POD automatically folded (just the POD, not the Perl).
I can't get it to work, so I've tried disabling all of my plugins and my .vimrc with this:
vim -u ...
3
votes
2answers
503 views
Hide Comments in Code in Unix Environment
I work in a Unix environment with the typical Unix tools (emacs, vim, gvim, sunstudio, etc)
My project has huge gross boilerplate comments on every method. It makes the files thousands of lines long, ...
2
votes
1answer
62 views
Sourcecode syntax highlighting with Code Folding
I know there are many syntax highlighting scripts in Javascript for adding syntax highlighting to source code, I am looking to see if such a thing exist with the addition of having Code Folding like ...
2
votes
2answers
50 views
Repeat Vim fold command (e.g. zfat: fold a tag)
Is there a way to repeat a fold command I just executed? For example, say I am folding away a few tags with "zfat", how can I repeat the fold command I just executed without typing it again in its ...