From 9de61988ac795e6311e8b53d51ad6880a60dff10 Mon Sep 17 00:00:00 2001 From: Strahinja Val Markovic Date: Tue, 30 Jun 2015 14:24:05 -0700 Subject: [PATCH] Fix bad formatting for YcmCompleter message Fixes #1522 --- python/ycm/client/command_request.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/ycm/client/command_request.py b/python/ycm/client/command_request.py index 8073b75c..7aeb98af 100644 --- a/python/ycm/client/command_request.py +++ b/python/ycm/client/command_request.py @@ -49,7 +49,7 @@ class CommandRequest( BaseRequest ): self._response = self.PostDataToHandler( request_data, 'run_completer_command' ) except ServerError as e: - vimsupport.PostVimMessage( e ) + vimsupport.PostMultiLineNotice( e ) def Response( self ):