-
Notifications
You must be signed in to change notification settings - Fork 154
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Question: Indexmap and CLion #148
Comments
I suspect this is probably failing because the IDE doesn't have the This seems like another vote for an explicit "std" feature (#145), and cc #135 for 2.0 considerations. |
Any update on this? I've changed some code to use IndexMap for a core data structure, and it basically completely breaks IDE functionality. I've added "std" explicitly to features in Cargo.toml (as per linked bug #145), but that seems to have no effect, anything that I get out of an IndexMap is a complete mystery to the IDE. |
It works for me with Vim and rust-analyzer, but I don't have CLion to try. Can you ask JetBrains for support? |
Thanks -- I will try vim and/or vscode and if the problem is Jetbrains specific file a bug with the Jetbrains Rust plugin. |
In a way, this is "not an indexmap bug", but it's clear that our usage of autocfg has multiple issues as downside and this should inform our 2.0 version (to not use the same solution for the 'std' flag). |
We're taking the |
Hello,
Thanks for the excellent crate!
I have one question related to the usage of the crate with JetBrains CLion. Somehow the intellisense doesn't work very nicely with it, and the IDE doesn't recognise the output types of functions such as IndexMap::get(). Is there anything that can be done to improve that experience?
Thanks a lot
The text was updated successfully, but these errors were encountered: