idanarye / vim-dutyl

Coordinate D tools to work together for you
http://www.vim.org/scripts/script.php?script_id=5003
79 stars 13 forks source link

no completion after a space #23

Closed kraxli closed 8 years ago

kraxli commented 8 years ago

Hi, in the code bellow I cannot complete wri<tab> for e.g. writeln

import std.stdio;
void main(){
wri<tab>
}

However when I use

import io = std.stdio;
void main(){
io.wri<tab>
}

io.wri<tab> brings up the completion suggestions.

Is there an option I need to set to get completion on spaces?

Thanks

idanarye commented 8 years ago

This looks like a DCD problem - please open a ticket over there. But before you do that, make sure you have the latests version of DCD, because I just checked with version v0.7.3 d8253402188913aed3d00d2240ca54b61b6ff7e7 and I got autocompletion in both scenarios.

kraxli commented 8 years ago

It worked (again) after a restart :-| . Thanks and sorry the too early post!