You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Since Howl is a multi-language editor, it's obvious that properly parsing all languages to figure out where functions begin or end is... difficult. Instead, I offer an alternative suggestion: A way to minimise content enclosed within a given set of braces/brackets/parentheses. As an example,
304 |
305 | fn foo(a: i32, b: i32) -> i32 {
306 | // Some useless code
307 | let c = 5;
308 | let d = c + a
309 | a + d
310 | }
311 |
I like this idea. It also allows collapsing arbitrary lists, dicts and other structures that use braces. We already have cursor-goto-brace which has logic to find the matching brace. What's missing is some support for hiding lines. One corner case is something with trailing text:
Why not collapse every lines that has the same or lower indentation level, except the ones with 0 indentation ? That should work everywhere without configuration tweak.
Why not collapse every lines that has the same or lower indentation level, except the ones with 0 indentation ? That should work everywhere without configuration tweak.
Since Howl is a multi-language editor, it's obvious that properly parsing all languages to figure out where functions begin or end is... difficult. Instead, I offer an alternative suggestion: A way to minimise content enclosed within a given set of braces/brackets/parentheses. As an example,
Would minimise to
The character to perform the minimisation upon could be tweaked on a per-language basis.
I've not fully thought through how this might work with nesting, but I thought that starting a discussion about this would be the best thing to do.
The text was updated successfully, but these errors were encountered: