Terbium-135
Is there a way to fold/unfold all occurrences of
@doc"""
[...]
"""
within a module at once (using a command or assigned keystroke) in VSCode?
Was talking to a colleague and have no idea where to look/ask at all.
Guess its part of language aware folding
Are there other editors which support this?
Trending in Questions
I’m working on a project that simulates the bumbl example in the programming phoenix book. It acts almost like an email client. We have a...
New
Hello!
Could someone please give me a help/sample code, how to delete a file from s3 using waffle/waffle_ecto from Phoenix app.
I creat...
New
I’m seeing that a list inside a Kino.DataTable will be interpreted as a charlist, even if the Kino.configure() is set to charlists: :as_l...
New
So my question is quite simple and i have found no conclusive answer on forum, google or AI.
Should we use :erlang.float for Integer to ...
New
Hi, I’ve just set up an application with ash_authentication. There is only magic link strategy for now, so there is no confirmation add o...
New
If a change or preparation module uses Ash.Changeset.get_argument/2 or Ash.Query.get_argument/2 (or any of the other get_argument functio...
New
I’m trying to set up Emacs with elixir-ls via lsp-mode and credo via Flycheck. This should mostly be preconfigured as Flycheck picks up c...
New
Other Trending Topics
I am happy to introduce the very α version of the new programming language compiled to BEAM.
Welcome Cure.
It has literally three kille...
New
Hobbes is a low-level distributed database for the Elixir programming language.
Hobbes provides a simple, safe, and scalable storage lay...
New
Hi there! We created Gust: A task orchestrator inspired by Airflow.
For those who have never heard about Aiflow, it’s a Python-based wor...
New
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
Xamal is a deployment tool for Elixir apps that deploys native releases to bare metal servers over SSH. It’s a port of GitHub - basecamp/...
New
Hello everyone. After busy few months I am happy to announce v0.1.0 of Emerge & Solve.
They are GUI (Emerge) and State management (S...
New
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #library
- #deployment
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #elixirconf
- #channels
- #exunit
- #discussion
- #code-sync
- #podcasts
- #javascript
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #blog-post
- #elixirconf-us
- #elixir-ls
- #ai
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #hex
- #security
- #metaprogramming











Showing Posts 1 to 9- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
sodapopcan
Vim certainly does and is actually on my list to write one for this very purpose. I have not done so yet but if you’re interested I’ll share here when done. Otherwise see
:help fold-exprif you’re curious.billylanchantin
⌘K ⌘2will do it for@docin VSCode on MacOS.The number indicates the level of indentation you want to fold. So
⌘K ⌘1would fold the top-leveldefmodule,⌘K ⌘2folds all the 2nd level indented regions like@docanddef,⌘K ⌘3would fold all the highest-regions inside eachdef, etc.Note: the default is that the command won’t fold the region where your cursor is. So if you’re trying to fold a particular
@doc, make sure your cursor is outside it.billylanchantin
Oh and
⌘K ⌘Junfolds everything.Terbium-135
Thank you both for the hints!
We are using indentation level wise folding already as well as #region folding.
Expression level folding would be nice - either for VSCode or for Zed (which I am evaluating right now)
Main reason is to just fold all
@docand keep the def open. Reason is to lower distraction if not working on the documentation.One might argue why not folding all with
ctrl-Kctrl-2and unfold the procedure which being worked on.The other way around is (just?) QoL.
Best regards
Note: Zed is available for windows since a few days. With the VSCode key layout it’s a tempting replacement. It is still lacking some functionality and stability.
And yes (I even remember the Atom editor…)
billylanchantin
Ah gotcha, you want to fold only comments. Then you want:
Fold All Block Comments:
⌘K ⌘/This will fold all block comments.
@docand@moduledocall considered:commentregions by the LSP.Note: you can also fold/unfold the current region your cursor is on with:
⌥ ⌘ [(fold),⌥ ⌘ ](unfold).Here’s some decent documentation if you want to see more:
BartOtten
Sure it’s not Emacs?
Terbium-135
Fold All Block Commentsnever worked in VSCode using Lexical here. Not sure which to blame (likely myself)I will give it another try very soon
billylanchantin
That’s the problem. So sorry I didn’t think to check. Language aware code-folding is only implemented right now in ElixirLS:
https://github.com/elixir-lsp/elixir-ls/pull/492
So you have to use ElixirLS as your LSP instead of Lexical to get the language aware folding.
Reminder: it’s generally the language server protocol (LSP) that implements features like code folding, not specific editors. That’s basically the point of LSPs: each editor just implements the protocol. That way communities don’t need to write a new language server per editor. So switching to Zed or Atom won’t fix your problem (unless of course that editor happens to implement its own LS for the language in question, but that’s not usually the case).
Terbium-135
Thanks for your explanation. Appreciate the link to a PR for ElixirLS.
Looking forward to see this implemented in Expert one day