Check the code with rustfmt

This commit is contained in:
Roey Darwish Dror
2018-07-04 14:24:20 +03:00
parent f8a95528de
commit e1d248785a
4 changed files with 5 additions and 4 deletions

View File

@@ -12,10 +12,10 @@ extern crate serde;
extern crate shellexpand;
#[macro_use]
extern crate log;
extern crate app_dirs;
extern crate env_logger;
extern crate term_size;
extern crate termcolor;
extern crate app_dirs;
#[cfg(target_os = "linux")]
mod linux;
@@ -198,8 +198,7 @@ fn run() -> Result<(), Error> {
if let Some(nvimrc) = vim::nvimrc() {
if let Some(plugin_framework) = vim::PluginFramework::detect(&nvimrc) {
terminal.print_separator(&format!("neovim ({:?})", plugin_framework));
run_vim(&nvim, &nvimrc, plugin_framework.upgrade_command())
.report("neovim", &mut reports);
run_vim(&nvim, &nvimrc, plugin_framework.upgrade_command()).report("neovim", &mut reports);
}
}
}