dimitarvp
Hey community,
I am working on several related projects. They are path dependencies and not in an umbrella.
The code is compiling and running fine when I work on the command line only. My problem is how to make VS Code (with vscode-elixir and ElixirLS plugins installed) not complain about not being able to find modules in the other projects.
I already added all projects to the workspace. Problem is, all projects except the one that was the first in the workspace don’t have .elixir_ls directories which means Code is not compiling them at all.
I didn’t have problems with monorepo projects so far but this is a multi-repo project.
Is there a cure?
Trending in Questions
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
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 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
What approach to take when sending live updates to “random” users Hi! I have a question, I have a little chat app, and when I create a DM...
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
Anyone here using Honeybadger?
My Honeybadger account is being overwhelmed with noise from some bots. Seeing a lot of
Bandit.HTTPError...
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
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
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
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
- #elixirconf-us
- #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)
AlchemistCamp
Hmm… I’m surprised
vscode-elixiris causing problems, but I’ve long-since disabledElixirLSdue to it underlining literally every single line in mymix.exsfile when I work from WSL.Can you make the other projects deps of the first one?
dimitarvp
Truthfully I figured I will just save the workspace file and restart Code. Now it has been crunching something for at least 45 minutes – on a high-end PC nonetheless! But the red highlights (errors) disappeared and it only started showing the few warnings I was already aware of.
I’ll wait for it to finish and post if things have improved. I’d hate to accept my own answer saying “welp I only had to restart it” but if that’s the solution then why not.
LostKobrakai
In the output panel you can switch to the ElixirLS output to see if it logged the errors is had.
NobbZ
Which version of Elixir and Erlang and operating system? I’m remembering some issues with dialyzer under certain circumstances that would make dialyzer run into an infinite loop…
dimitarvp
dimitarvp
Trouble is, initially it logged nothing, was just highlighting inter-project dependencies in red. It’s alright now, after a restart and 1h of 100% CPU – as stupid as it sounds.
dimitarvp
Called it – a restart of Code somehow fixed it. Even though it took it 1 hour of 100% loaded 4 CPU cores.
Sorry for the noise.
NobbZ
Please remind that vscode might not see the
asdfexecutables, but rather the ones of the system wide installations, depending on the way you start vscode.Especially if you start vscode from the GUI rather than a treminal, the ELS will use the systems runtime.
dimitarvp
Thanks for the reminder. I forgot to mention that I am indeed just starting Code like so in the terminal:
code &. That way it gets the extra $PATH entries that theasdfshims inject. I specifically removed the system-wide Elixir installation to make sure a few weeks ago.