1
1
In addition to the functionality featured in system.vroom, the maktaba#syscall#
2
2
helpers feature asynchronous execution powered by vim's native jobs feature.
3
3
4
+ Note that we use delays of 0.1s on the asynchronous calls to ensure nvim has
5
+ enough time to flush the contents of stdout to vroom. This shouldn't be
6
+ necessary for non-test usage.
7
+ (See https://github.com/google/vim-maktaba/pull/234 for more details.)
8
+
9
+ First, we need to work around for nvim prompting users to press enter.
10
+ (See https://github.com/google/vim-codefmt/pull/131)
11
+
12
+ :if has('nvim')<CR>
13
+ | set cmdheight=30<CR>
14
+ |endif<CR>
15
+
4
16
Before we dive in, let's get maktaba installed and set up the shell override:
5
17
6
18
@system (STRICT)
@@ -14,9 +26,9 @@ Before we dive in, let's get maktaba installed and set up the shell override:
14
26
The examples featured in this file only work with vim instances that support
15
27
vim jobs.
16
28
17
- :if !has('job')<CR>
29
+ :if !has('job') && !has('nvim') <CR>
18
30
| echomsg maktaba#error#MissingFeature(
19
- | 'Must have +job support to run system-vimjob .vroom examples')<CR>
31
+ | 'Must have +job support or nvim to run system-job .vroom examples')<CR>
20
32
|endif
21
33
22
34
@@ -35,7 +47,7 @@ To execute system calls asynchronously, use CallAsync.
35
47
:function Callback(result) abort<CR>
36
48
| let g:callback_stdout = a:result.stdout<CR>
37
49
|endfunction
38
- :let g:invocation = AsyncWait(g:syscall.CallAsync('Callback', 0), 2)
50
+ :let g:invocation = AsyncWait(g:syscall.CallAsync('Callback', 0), 2) (0.2s)
39
51
! echo hi
40
52
:echomsg g:callback_stdout
41
53
~ hi
@@ -46,7 +58,7 @@ It is also possible to force synchronous execution.
46
58
47
59
:call maktaba#syscall#SetAsyncDisabledForTesting(1)
48
60
:call maktaba#syscall#ForceSyncFallbackAllowedForTesting(1)
49
- :let g:invocation = AsyncWait(g:syscall.CallAsync('Callback', 0), 2)
61
+ :let g:invocation = AsyncWait(g:syscall.CallAsync('Callback', 0), 2) (0.2s)
50
62
! echo hi.*
51
63
52
64
:call maktaba#syscall#SetAsyncDisabledForTesting(0)
@@ -55,21 +67,21 @@ It is also possible to force synchronous execution.
55
67
Asynchronous calls can also take a stdin parameter.
56
68
57
69
:let g:syscall = maktaba#syscall#Create(['cat']).WithStdin("Hello")
58
- :let g:invocation = AsyncWait(g:syscall.CallAsync('Callback', 0), 2)
70
+ :let g:invocation = AsyncWait(g:syscall.CallAsync('Callback', 0), 2) (0.2s)
59
71
! cat
60
72
:echomsg g:invocation.stdout
61
73
~ Hello
62
74
63
75
And() and Or() can also be used to chain Asynchronous commands.
64
76
65
77
:let g:syscall = maktaba#syscall#Create('true').And('echo SUCCESS')
66
- :let g:invocation = AsyncWait(g:syscall.CallAsync('Callback', 0), 2)
78
+ :let g:invocation = AsyncWait(g:syscall.CallAsync('Callback', 0), 2) (0.2s)
67
79
! true && echo SUCCESS
68
80
:echomsg g:invocation.stdout
69
81
~ SUCCESS
70
82
71
83
:let g:syscall = maktaba#syscall#Create('false').And('echo FAILURE')
72
- :let g:invocation = AsyncWait(g:syscall.CallAsync('Callback', 0), 2)
84
+ :let g:invocation = AsyncWait(g:syscall.CallAsync('Callback', 0), 2) (0.2s)
73
85
! false && echo FAILURE
74
86
:echomsg g:invocation.stdout
75
87
~ FAILURE
0 commit comments