Skip to content

Commit 250ea26

Browse files
committed
Truncate finished message to prevent press ENTER prompt
Closes #311
1 parent b32bde7 commit 250ea26

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

autoload/dispatch.vim

+1-1
Original file line numberDiff line numberDiff line change
@@ -1226,7 +1226,7 @@ function! dispatch#complete(file, ...) abort
12261226
echohl DispatchCompleteMsg
12271227
let label = 'Complete:'
12281228
endif
1229-
echo label '!'.request.expanded s:postfix(request)
1229+
call s:echo_truncated(label . '!', request.expanded . ' ' . s:postfix(request))
12301230
echohl NONE
12311231
if !a:0
12321232
checktime

0 commit comments

Comments
 (0)