ryanwinchester
Anybody here feel this way (or have better syntax highlighting)?
It feels overwhelming/noisy.
https://twitter.com/ryanrwinchester/status/953495758484905984
Trending in Discussions
As the title says, please share what you’ve been up to with Elixir. Whether that’s been learning it, looking into it, making stuff with i...
New
I want to open this thread for you all to discuss and help those who really like Ash but are still hesitant to use it in a real project. ...
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
We’re evaluating API mocking tools for OpenAPI-based projects and would love to hear what other teams are using.
We’re particularly inte...
New
I’m posting this in response to Jose’s recent tweet (Cr. link) :
People are sleeping on Elixir for a coding harness:
Hot-code swappi...
New
Hello,
I wrote Stop My Hand, a Scattergories-like web application using Phoenix/LiveView as my learning project for Elixir (after readin...
New
AcmeScript — Writing JS hooks as if I were still using Elixir
I’ve been having fun building a little something over the last few days: Ac...
New
Other Trending Topics
Hobbes is a low-level distributed database for the Elixir programming language.
Hobbes provides a simple, safe, and scalable storage lay...
New
ExRatatui lets you cook up rich terminal UIs in Elixir, powered by Rust’s ratatui via Rustler NIFs. Build interactive terminal applicatio...
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
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
There are three potential reasons for members of this forum to have a look at https://vutuv.de
You are tired or annoyed of LinkedIn.
Yo...
New
Aludel - LLM Evaluation Workbench
Aludel is an embeddable Phoenix LiveView dashboard for evaluating and comparing LLM prompts across mult...
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
- #elixirconf
- #channels
- #exunit
- #discussion
- #code-sync
- #javascript
- #podcasts
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #blog-post
- #elixir-ls
- #ai
- #elixirconf-us
- #phoenix_html
- #iex
- #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)
gon782
I don’t really agree, but why not just change your theme to make up for it? It’s not very likely to change based on the idea of it being too visually distinctive.
ryanwinchester
That’s not necessarily a simple thing to do. That’s why I’m asking around.
gon782
What editor and theme are you using? I don’t know of any modern editor/IDE that doesn’t have (comparatively) easy theme management.
NobbZ
I think he means, changing the spec thing without changing everything else.
ryanwinchester
Yeah, I’ve used a few editors and themes and none of them seem to do what I want. I want to see if I’m not alone. (currently using vscode)
I think @spec should look closer in appearance to documentation than code.
gon782
In that case I suppose it’d be an issue of having the @spec part be parsed as documentation in, for example, the ElixirLS extension in VS Code. I’m not entirely sure which part does the actual parsing of the text, but presumably it’s in a public repo.
Edit:
https://github.com/JakeBecker/vscode-elixir-ls/blob/master/syntaxes/elixir.json#L25
There you can see the syntax highlighting part for docs. Adding
@specas a pattern there should probably make it so that it’s highlighted as documentation. Fork the repo, make the change, run your own version of the extension.If it’s not exactly there, it’ll likely be as easy somewhere else in that file.
crabonature
I don’t agree it’s visually overpowering.
@specis a part of code not a part of documentation. It defines really important thing, types for function parameters and type of function return value, which helps in code readibility and code understanding.Side note:
In PHP types should be written in function clause:
gon782
This is pretty secondary to his own taste. If he wants to run an extension that treats it visually as documentation, that’s really his prerogative. I think the bigger point here is that it’s probably better to look to your tooling rather than try to make changes on a compiler/community level.
crabonature
Yep. You are rigth.
ryanwinchester
And keep up with bug fixes, patches and releases. Which is why I said it’s not necessarily a simple thing to do.
I’m not trying to change the language or compiler. I’m trying to see if there are other people who feel the same way I do and if they have found or come up with any good solutions.