From a3021bd42b61cf40554c26cb36d5339454808ff1 Mon Sep 17 00:00:00 2001 From: Marco Hinz Date: Thu, 22 Aug 2013 19:54:46 +0200 Subject: [PATCH] Fix comment typos --- autoload/startify.vim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/autoload/startify.vim b/autoload/startify.vim index a44015e..2f963c8 100644 --- a/autoload/startify.vim +++ b/autoload/startify.vim @@ -394,7 +394,7 @@ function! s:open_buffers(cword) abort let [path, type] = val[1:2] if line2byte('$') == -1 - " open in current buffer + " open in current window execute 'edit' path elseif type == 'S' " open in split @@ -406,7 +406,7 @@ function! s:open_buffers(cword) abort " open in tab execute 'tabnew' path else - " open in current buffer + " open in current window execute 'edit' path endif