-
-
Notifications
You must be signed in to change notification settings - Fork 88
Support analysis / types with Rust Analyzer #883
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Open
Hofer-Julian
wants to merge
31
commits into
main
Choose a base branch
from
Hofer-Julian/type-rust-analyzer
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Fixes #881 It still takes a bit until diagnostics arrive, but this way error messages from `cargo` are included as well.
sonnyp
reviewed
Feb 15, 2024
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I shouldn't be necessary to do anything special, but I also noticed that it doesn't always work on my machine. Before merging, we should also look out if this PR introduces regressions. If yes, maybe we just merge a subset of it. |
Before this change, Workbench installed via Flatpak was not able to run Vala demos that required Shumate, Libportal or Libspelling because their header files were removed by the cleanup process. The versions of Workbench that are run from Builder or flatpak-vscode can actually compile and execute this demos because they don't do any clean-up, and therefore none of the header files are deleted, which is probably why this issue went unnoticed for quite some time even when porting the affected demos to Vala. In order to test this changes and compare them with the current version of Workbench, it is necessary to export a bundle and install it, so the cleanup process is actually done. Closes #885
`libxmljs` one of our nodejs dependencies requires a C++ compiler
Co-authored-by: Sonny Piers <sonny@fastmail.net> Co-authored-by: Marco Capypara Köpcke <hello@capypara.de>
Co-authored-by: Sonny Piers <sonny@fastmail.net>
This commit adds my name to the contributor list for #857 Thanks so much for the patience and help I received from you @sonnyp @theCapypara
We only support English
# for free
to join this conversation on GitHub.
Already have an account?
# to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Fixes #881
It still takes a bit until diagnostics arrive, but this way error messages from
cargo
are included as well.Also moves the target dir to a common place, similar to how we do it when we compile Rust.