Skip to content

Commit 77b23c8

Browse files
committed
Merge pull request #14 (references to xolox#easytags in xolox#misc#async)
2 parents 640bc14 + 3ae8dc0 commit 77b23c8

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ from the source code of the miscellaneous scripts using the Python module
3838
<!-- Start of generated documentation -->
3939

4040
The documentation of the 95 functions below was extracted from
41-
19 Vim scripts on September 17, 2014 at 22:36.
41+
19 Vim scripts on September 17, 2014 at 22:39.
4242

4343
### Asynchronous Vim script evaluation
4444

autoload/xolox/misc.vim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44
" Last Change: September 17, 2014
55
" URL: http://peterodding.com/code/vim/misc/
66

7-
let g:xolox#misc#version = '1.16'
7+
let g:xolox#misc#version = '1.16.1'

autoload/xolox/misc/async.vim

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
" Asynchronous Vim script evaluation.
22
"
33
" Author: Peter Odding <[email protected]>
4-
" Last Change: June 30, 2014
4+
" Last Change: September 17, 2014
55
" URL: http://peterodding.com/code/vim/misc/
66
"
77
" The `xolox#misc#async#call()` function builds on top of `xolox#misc#os#exec()`
@@ -161,7 +161,7 @@ function! xolox#misc#async#call(options) " {{{1
161161
let quoted_program = xolox#misc#escape#shell(xolox#misc#os#find_vim('vim'))
162162
let quoted_command = xolox#misc#escape#shell(vim_command)
163163
let shell_command = printf('%s -u NONE -U NONE --noplugin -n -N -i NONE --cmd %s', quoted_program, quoted_command)
164-
call xolox#misc#msg#debug("vim-misc %s: Generated asynchronous shell command #%i: %s", g:xolox#easytags#version, unique_number, shell_command)
164+
call xolox#misc#msg#debug("vim-misc %s: Generated asynchronous shell command #%i: %s", g:xolox#misc#version, unique_number, shell_command)
165165
call xolox#misc#os#exec({'command': shell_command, 'async': 1})
166166
let g:xolox#misc#async#requests[unique_number] = request
167167
endfunction
@@ -213,7 +213,7 @@ function! xolox#misc#async#callback_to_parent(response) " {{{1
213213
" function.
214214
let unique_number = a:response['number']
215215
let request = g:xolox#misc#async#requests[unique_number]
216-
call xolox#misc#timer#stop("vim-misc %s: Processing asynchronous callback #%i after %s ..", g:xolox#easytags#version, unique_number, request['starttime'])
216+
call xolox#misc#timer#stop("vim-misc %s: Processing asynchronous callback #%i after %s ..", g:xolox#misc#version, unique_number, request['starttime'])
217217
call remove(g:xolox#misc#async#requests, unique_number)
218218
let callback = get(request, 'callback')
219219
if !empty(callback)

doc/misc.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ from the source code of the miscellaneous scripts using the Python module
170170
'vimdoctool.py' included in vim-tools [5].
171171

172172
The documentation of the 95 functions below was extracted from 19 Vim scripts
173-
on September 17, 2014 at 22:36.
173+
on September 17, 2014 at 22:39.
174174

175175
-------------------------------------------------------------------------------
176176
*misc-asynchronous-vim-script-evaluation*

0 commit comments

Comments
 (0)