You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
let mut file = try!(File::open(file_path).map_err(|e| e.to_string()));
let mut contents = String::new();
Then contents.<C-x C-o> gives a good list of completion options, all appropriate for String, showing that vim-racer is indeed working properly. However, file.<C-x C-o> doesn't find anything: Pattern not found. Things like read_to_string, which are properly defined for File, can successfully be used, and the program successfully compiles, however.
The text was updated successfully, but these errors were encountered:
If I have
Then
contents.<C-x C-o>
gives a good list of completion options, all appropriate for String, showing that vim-racer is indeed working properly. However,file.<C-x C-o>
doesn't find anything:Pattern not found
. Things like read_to_string, which are properly defined for File, can successfully be used, and the program successfully compiles, however.The text was updated successfully, but these errors were encountered: