We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9c277a3 commit 1a3b69bCopy full SHA for 1a3b69b
autoload/javacomplete/util.vim
@@ -3,6 +3,11 @@
3
"
4
" Utility functions
5
6
+function! s:Log(log)
7
+ let log = type(a:log) == type("") ? a:log : string(a:log)
8
+ call javacomplete#logger#Log("[util] ". log)
9
+endfunction
10
+
11
" TODO: search pair used in string, like
12
" 'create(ao.fox("("), new String).foo().'
13
function! javacomplete#util#GetMatchedIndexEx(str, idx, one, another)
@@ -258,6 +263,7 @@ function! s:NewJob(id, handler)
258
263
endfunction
259
264
260
265
function! javacomplete#util#RunSystem(command, shellName, handler)
266
+ call s:Log("running command: ". a:command)
261
267
if has('nvim')
262
268
if exists('*jobstart')
269
let callbacks = {
0 commit comments