Phil Dawes
Phil Dawes
It is the goal to eventually use rustc for type inference, and the rust tools team are working in the direction of making rustc more amenable for tools use, but...
Does capnpc-rust write the addressbook generated source anywhere? Racer currently needs the source code to do completions / find definitions at the moment
Hello, Racer's cargo support is a bit hacky, and it does hardcode the 'github' directory. The github specific code is in here, if you fancy making a patch: (search for...
Hi @Wilfred: Yes, I'm afraid this is because racer doesn't support macros yet. (I guess vec![] could be added as a special case, but personally I'm more interested in working...
Hi @echochamber. I think your intuition is correct about expanding macros, this was how I was originally planning to handle them in racer. There are a couple of thorns: -...
Hi @echochamber, Sorry for the delay in replying. Things are a bit up in the air at the moment with regard to racer because there's the opportunity of using the...
Racer doesn't support array definitions yet, sorry!
Hi @fitzgen , I'm afraid racer doesn't support macros yet, sorry
Hi @tafia, I think for field the problem is in nameres::search_struct_fields() and ast::parse_struct_fields(). It should be using the 'visibility' attribute in the parsed ast 'NamedField' type.
Agreed. Currently all my spare time is going into figuring out how to use rustc to get perfect completions so I probably won't get to this for a while I'm...