commit ebd23cb97b3e6b2e345204697548c5f202098011
parent 4eb0862a0766be39bdacd362f174c79eb9ff2ea7
Author: Daniel Moch <daniel@danielmoch.com>
Date: Tue, 28 Mar 2017 20:32:55 -0400
Add known limitation to Gotchas section
Diffstat:
1 file changed, 6 insertions(+), 3 deletions(-)
diff --git a/README.md b/README.md
@@ -99,9 +99,12 @@ mapping to my `.vimrc`:
`nnoremap <Leader>g :GrepJob!<Space>`
## Gotchas
-If `grepprg` is set to `'internal'`, then Vim uses its own builtin grep
-command. This still works when you call `:GrepJob`, but not
-asynchronously.
+1. If `grepprg` is set to `'internal'`, then Vim uses its own builtin grep
+ command. This still works when you call `:GrepJob`, but not
+ asynchronously.
+2. For simplicity, only one instance of a given executable can run at
+ once. You can run `make` and `pylint`, but you can't run two
+ instances of `make`.
## Vim Documentation
Part of the goal of _MakeJob_ is to minimize the size of the plugin by