MCPcopy Index your code
hub / github.com/ycm-core/YouCompleteMe / SendCommandRequest

Method SendCommandRequest

python/ycm/youcompleteme.py:461–476  ·  view source on GitHub ↗
( self,
                          arguments,
                          modifiers,
                          has_range,
                          start_line,
                          end_line )

Source from the content-addressed store, hash-verified

459
460
461 def SendCommandRequest( self,
462 arguments,
463 modifiers,
464 has_range,
465 start_line,
466 end_line ):
467 final_arguments, extra_data = self._GetCommandRequestArguments(
468 arguments,
469 has_range,
470 start_line,
471 end_line )
472 return SendCommandRequest(
473 final_arguments,
474 modifiers,
475 self._user_options[ 'goto_buffer_command' ],
476 extra_data )
477
478
479 def GetCommandResponse( self, arguments ):

Calls 2

SendCommandRequestFunction · 0.90