Skip to content
This repository has been archived by the owner on Oct 12, 2022. It is now read-only.

Commit

Permalink
Capitalize Vim and Neovim
Browse files Browse the repository at this point in the history
  • Loading branch information
r-darwish committed Jul 4, 2018
1 parent e1d2487 commit 2b96377
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ fn run() -> Result<(), Error> {
if let Some(vim) = utils::which("vim") {
if let Some(vimrc) = vim::vimrc() {
if let Some(plugin_framework) = vim::PluginFramework::detect(&vimrc) {
terminal.print_separator(&format!("vim ({:?})", plugin_framework));
terminal.print_separator(&format!("Vim ({:?})", plugin_framework));
run_vim(&vim, &vimrc, plugin_framework.upgrade_command()).report("Vim", &mut reports);
}
}
Expand All @@ -197,8 +197,8 @@ fn run() -> Result<(), Error> {
if let Some(nvim) = utils::which("nvim") {
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);
terminal.print_separator(&format!("Neovim ({:?})", plugin_framework));
run_vim(&nvim, &nvimrc, plugin_framework.upgrade_command()).report("Neovim", &mut reports);
}
}
}
Expand Down

0 comments on commit 2b96377

Please sign in to comment.