1
vote
1answer
25 views
Code folding on consecutive collect/select/reject/each
I play around with arrays and hashes quite a lot in ruby and end up with some code that looks like this:
sum = two_dimensional_array.select{|i|
i.collect{|j|
j.to_i
}.sum …
1
vote
1answer
66 views
Eclipse RCP - Internals of projection (folding) service
I need to make custom text folding as described here: http://stackoverflow.com/questions/1017375/can-i-merge-syntax-coloring-and-folding-or-projection-colored-from-master-docume
I' …
2
votes
3answers
71 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). …
1
vote
1answer
26 views
A text editor that auto-folds parentheses?
I have some big messy SQL procedures that I'm debugging, and they tend to have a lot of heavily nested parentheses:
SELECT * FROM (SELECT F1,F2 FROM TABLE1 AS X LEFT JOIN
(SELECT …
2
votes
4answers
1k 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 point …
0
votes
2answers
136 views
How can you have folds for a LaTex file in xEmacs?
I would like to have automatic folds for comments in my AquaEmacs.
5
votes
4answers
208 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 headac …
2
votes
2answers
76 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
3answers
243 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 …
0
votes
2answers
134 views
little folding triangles?
Based on the style of the 'turning' triangle that opens up a sub menu. Say I had a form that had lender name address city.... how would I add extra section to that form for a secon …
9
votes
7answers
658 views
Implications of foldr vs. foldl (or foldl’)
Firstly, Real World Haskell, which I am reading, says to never use foldl instead of foldl'. So I trust it.
But I'm hazy on when to use foldr vs. foldl'. Though I can see the str …
0
votes
2answers
472 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 se …
3
votes
4answers
272 views
Why does this first Haskell function FAIL to handle infinite lists, while this second snippet SUCCEEDS with infinite lists?
I have two Haskell functions, both of which seem very similar to me. But the first one FAILS against infinite lists, and the second one SUCCEEDS against infinite lists. I have been …
3
votes
6answers
468 views
How to implement a list fold in Java
I have a List and want to reduce it to a single value (functional programing term "fold", Ruby term "inject"), like
Arrays.asList("a", "b", "c") ... fold ... "a,b,c"
As I am in …
2
votes
8answers
887 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, …
