popo63301
Hello !
I would like to prevent automatic parentheses while coding in Elixir in VSCode.
I can’t see where to configure that.
Any suggestions ?
Trending in Questions
Hello!
Suppose you are building workflow (order / task / payment) processing system with the following requirements:
Each workflow con...
New
I’m in search of an Elixir library that offers PDF generation capabilities similar to Ruby’s Prawn. While there have been discussions abo...
New
Hey guys,
I’ve got a huge CSV ( around 10 GB ) that needs to be processed hourly
Do you guys have any suggestions what is the best prac...
New
Kia ora,
We have been using elixir-google-api to connect to Google Drive. However, with the updates to Tesla due to CVEs this is now bro...
New
I’ve followed the Phoenix LiveView file upload code here Uploads — Phoenix LiveView v1.0.0-rc.7 and so far everything works just fine wit...
New
Hello,
I’m developing a online persistent chat system (what’s app) like using elixir/dynamodb/aws for a mobile app(flutter).
The diffic...
New
I have what I’ve heard referred to as a “lookup table” in my database. This is a way of assigning codes to common values. One common lo...
New
Other Trending Topics
Hey, I’m Jesse and I’m the main contributor behind Dexter, a full-featured, lightning-fast Elixir LSP optimized for large codebases. It s...
New
Hobbes is a low-level distributed database for the Elixir programming language.
Hobbes provides a simple, safe, and scalable storage lay...
New
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
ExRatatui lets you cook up rich terminal UIs in Elixir, powered by Rust’s ratatui via Rustler NIFs. Build interactive terminal applicatio...
New
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
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
- #deployment
- #library
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #channels
- #elixirconf
- #exunit
- #discussion
- #code-sync
- #javascript
- #podcasts
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #elixir-ls
- #blog-post
- #ai
- #phoenix_html
- #iex
- #elixirconf-us
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #hex
- #security
- #metaprogramming










Showing Posts 1 to 10- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
cmo
The elixir formatter doesn’t have much in the way of options. The idea is that you accept how it is and move on with your life, free from worrying about formatting.
There are libraries, ecto, phoenix etc, that tell it not to add them to some macros, which you need to add to
formatter.exs.If you’re just talking about it creating the second bracket, look in the VS Code settings.
adamu
The good news is, that’s one of the few customisable options.
The bad news is, you have to specify every function name and arity where you don’t want it to automatically add the parenthesis.
Check out the
mix formatandCode.format_format_string/2docs. You’re looking for:locals_without_parens.See Plug for an example.
opsb
I’ve also had this issue. The config is in formatter.exs and running
mix formatworks as expected. In vscode though it only works intermittently, the rest of the time it will start adding brackets in again.BartOtten
Is this about them being added ‘on format’ or during typing? The latter seems like an option which is editor specific….
popo63301
I have to precise. It’s annoying for 2 particular situations:
Macros like
addandfield(in Ecto Migrations and Schemas)cmo
Have you got the
inpit_depsset in.formatter.exs? Theectosetting should stop that. However, as someone pointed out, it will randomly screw it up every now and then. You have git to save you in those instances.Ivor
I just ran into this issue and found this thread. Then I added and removed a
depand rearranged the order and then the parentheses went away when I saved. In my case this was for thepropdeclaration in surface.Not sure if this was just luck or whether it helped. Can’t reproduce it now because problem is fixed and the parentheses are being removed. Hopefully this helps someone else test it in the future.
fteschke
I experienced the same issue.
Similar to @Ivor, resetting the dependencies helped me.
rm mix.lock; rm -rf _build; rm -rf deps; mix deps.getBefore: Parantheses added by
mix format, e.g. to ectofieldmacro.After: Parantheses no longer added.
I did not test if all the steps were necessary, or if a single one of them might have helped.
greven
This is a bug with ElixirLS and it’s a trick one, it has to do with race conditions.
It’s being tracked here: Formatter doesn't respect formatter.exs while your code is still compiling · Issue #526 · elixir-lsp/elixir-ls · GitHub
rorscharg
Runing
MIX_ENV=test mix compile --forceand restarting VSCode seems to fix it for me.