File tree Expand file tree Collapse file tree 4 files changed +8
-7
lines changed Expand file tree Collapse file tree 4 files changed +8
-7
lines changed Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ from the source code of the miscellaneous scripts using the Python module
38
38
<!-- Start of generated documentation -->
39
39
40
40
The documentation of the 95 functions below was extracted from
41
- 19 Vim scripts on October 28 , 2014 at 02:06 .
41
+ 19 Vim scripts on November 13 , 2014 at 23:19 .
42
42
43
43
### Asynchronous Vim script evaluation
44
44
Original file line number Diff line number Diff line change 1
1
" The version of my miscellaneous scripts.
2
2
"
3
3
" Author: Peter Odding <peter@peterodding.com>
4
- " Last Change: October 28 , 2014
4
+ " Last Change: November 13 , 2014
5
5
" URL: http://peterodding.com/code/vim/misc/
6
6
7
- let g: xolox #misc#version = ' 1.17'
7
+ let g: xolox #misc#version = ' 1.17.1 '
Original file line number Diff line number Diff line change 1
1
" Functions to interact with the user.
2
2
"
3
3
" Author: Peter Odding <peter@peterodding.com>
4
- " Last Change: June 2, 2013
4
+ " Last Change: November 13, 2014
5
5
" URL: http://peterodding.com/code/vim/misc/
6
6
7
7
if ! exists (' g:xolox_message_buffer' )
@@ -77,8 +77,9 @@ function! s:show_message(hlgroup, args) " {{{1
77
77
autocmd ! CursorHold ,CursorHoldI * call s: clear_message ()
78
78
augroup END
79
79
execute ' echohl' a: hlgroup
80
- " Redraw to avoid |hit-enter| prompt.
81
- redraw
80
+ " Redraw to avoid the |hit-enter| prompt. We use :silent to avoid issues
81
+ " like this one: https://github.com/xolox/vim-easytags/issues/69.
82
+ silent ! redraw
82
83
for line in split (message, " \n " )
83
84
echomsg line
84
85
endfor
Original file line number Diff line number Diff line change @@ -170,7 +170,7 @@ from the source code of the miscellaneous scripts using the Python module
170
170
'vimdoctool.py' included in vim-tools [5].
171
171
172
172
The documentation of the 95 functions below was extracted from 19 Vim scripts
173
- on October 28 , 2014 at 02:06 .
173
+ on November 13 , 2014 at 23:19 .
174
174
175
175
-------------------------------------------------------------------------------
176
176
*misc-asynchronous-vim-script-evaluation*
You can’t perform that action at this time.
0 commit comments