瀏覽代碼

Env: prevent 'press enter' prompt in small windows (only Vim)

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

+ 4 - 1
autoload/startify.vim

@@ -799,7 +799,10 @@ function! s:init_env()
   let ignore = { 'PWD': 1, 'OLDPWD': 1 }
 
   function! s:get_env()
-    silent execute "normal! :return $\<c-a>')\<c-b>\<c-right>\<right>\<del>split('\<cr>"
+    redir => s
+      silent! execute "norm!:ec$\<c-a>'\<c-b>\<right>\<right>\<del>'\<cr>"
+    redir END
+    return split(s)
   endfunction
 
   function! s:compare_by_key_len(foo, bar)