瀏覽代碼

correct indentation

Marco Hinz 12 年之前
父節點
當前提交
d3f8a23cdc
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      plugin/startify.vim

+ 1 - 1
plugin/startify.vim

@@ -125,7 +125,7 @@ endfunction
 function! s:get_index_as_string(idx) abort
   if exists('g:startify_custom_indices')
     let listlen = len(g:startify_custom_indices)
-      return (a:idx < listlen) ? g:startify_custom_indices[a:idx] : string(a:idx - listlen)
+    return (a:idx < listlen) ? g:startify_custom_indices[a:idx] : string(a:idx - listlen)
   else
     return string(a:idx)
   endif