Fl4m3Ph03n1x
Background
I use a library that defines a new pipeline macro, the triple arrow >>>. So in my code, it is normal to have something like this:
def safe_div(a, b), do:
a
|> divide(b)
>>> handle_result()
This magic here is in handle_result. What the >>> does is not important, what matters here is that this is a type of format that I want to see in my code.
Problem
The problem here is the mix format does not know how that it should treat >>> as it treats |>. So inevitably my code becomes:
def safe_div(a, b), do:
a
|> divide(b) >>> handle_result()
Which is very ugly and impossible to read for larger functions.
I have tried to find a way to change mix format’s configuration to fix this issue, unfortunately I was not able to find anything.
Question
- Can I configure
mix formatto treat>>>as a|>? - If not, would it be a bad idea to make a PR where people would be allowed to define “pipelike” operators/macros, thus telling
mix formathow to behave?
Basically, what options do I have here ?
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,
I know there is an approach for handling lists that allows for optimized traversal, but I can’t recall the specific method (somet...
New
Hi everyone,
I am toying with the idea of building a “match maker” for giving personal help to people that wants to start coding.
I sta...
New
Documentation
While reading the Scoped Routes section, I noticed that the documentation currently refers to a problem without explainin...
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
I recently noticed that Elixir’s Logger defaults its primary log level to :debug when no :logger, :level application configuration is pre...
New
apply_graft/2 doesn’t rewrite an add_many sub-workflow’s deps on an add step. Grafted jobs cancel with “upstream job was deleted”
Version...
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
I am happy to introduce the very α version of the new programming language compiled to BEAM.
Welcome Cure.
It has literally three kille...
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
Hi everyone!
The first release candidate for the Expert language server project is now available!
We’ve published a press release detai...
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
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
- #elixirconf-us
- #ai
- #blog-post
- #elixir-ls
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #metaprogramming
- #hex
- #security










Showing Posts 1 to 5- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
mudasobwa
I cannot validate it now, but I guess
>>>/2macro should injectend_of_expression: [newlines: 1]or like into meta (second tuple element) of the corresponding AST it produces.Somewhat like here.
Fl4m3Ph03n1x
Quite interesting. So I would have to change the code of the library I am using, right?
josevalim
Here are the operators we consider pipeline like: elixir/lib/elixir/lib/code/formatter.ex at v1.11.4 · elixir-lang/elixir · GitHub
>>>isn’t one because it is also used as a Bitwise operator by Elixir.mudasobwa
Well, better change the operator to one of those considered pipes already, but if the consumer code is already full of calls and you don’t want to stick to it, change the
>>>/2itself. If I am not mistaken with the approach.Fl4m3Ph03n1x
@josevalim and @mudasobwa Thank you all for your support and answers. I will now see what I can do!