Auto merge of #2407 - micbou:remove-unloaded-buffer-parameter, r=vheon
[READY] Remove unloaded_buffer parameter See PR https://github.com/Valloric/ycmd/pull/542. <!-- Reviewable:start --> --- This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/valloric/youcompleteme/2407) <!-- Reviewable:end -->
This commit is contained in:
commit
6e52536f70
@ -318,10 +318,7 @@ class YouCompleteMe( object ):
|
|||||||
def OnBufferUnload( self, deleted_buffer_file ):
|
def OnBufferUnload( self, deleted_buffer_file ):
|
||||||
if not self.IsServerAlive():
|
if not self.IsServerAlive():
|
||||||
return
|
return
|
||||||
SendEventNotificationAsync(
|
SendEventNotificationAsync( 'BufferUnload', filepath = deleted_buffer_file )
|
||||||
'BufferUnload',
|
|
||||||
filepath = deleted_buffer_file,
|
|
||||||
extra_data = { 'unloaded_buffer': deleted_buffer_file } )
|
|
||||||
|
|
||||||
|
|
||||||
def OnBufferVisit( self ):
|
def OnBufferVisit( self ):
|
||||||
|
2
third_party/ycmd
vendored
2
third_party/ycmd
vendored
@ -1 +1 @@
|
|||||||
Subproject commit fbc28d2e17af4c843b75bb4659baaab7a23d1d9c
|
Subproject commit c3daaacd28decaf8250ee7feaa956d0519eaa52d
|
Loading…
Reference in New Issue
Block a user