remove unncessary logs

This commit is contained in:
Prabir Shrestha
2019-02-10 17:19:48 -08:00
parent 465ac34547
commit 8f835011e6
2 changed files with 0 additions and 4 deletions

View File

@@ -11,7 +11,6 @@ if !has('timers')
endif
let s:already_setup = 0
let s:previous_position = []
function! asyncomplete#log(...) abort
if !empty(g:asyncomplete_log_file)

View File

@@ -40,12 +40,10 @@ function! s:on_insert_leave() abort
endfunction
function! s:on_text_changed_i() abort
call asyncomplete#log('i', s:previous_position, getcurpos())
call s:maybe_notify_on_change()
endfunction
function! s:on_text_changed_p() abort
call asyncomplete#log('p', s:previous_position, getcurpos())
call s:maybe_notify_on_change()
endfunction
@@ -59,4 +57,3 @@ function! s:maybe_notify_on_change() abort
endfor
endif
endfunction