MCPcopy Create free account
hub / github.com/ycm-core/YouCompleteMe / ResolveResponse

Method ResolveResponse

python/ycm/tests/completion_test.py:201–214  ·  view source on GitHub ↗
( *args )

Source from the content-addressed store, hash-verified

199 }
200
201 def ResolveResponse( *args ):
202 return {
203 'completion': {
204 'insertion_text': 'insertion_text',
205 'menu_text': 'menu_text',
206 'extra_menu_info': 'extra_menu_info',
207 'detailed_info': 'detailed_info',
208 'kind': 'kind',
209 'extra_data': {
210 'doc_string': 'doc_string with more info'
211 }
212 },
213 'errors': []
214 }
215
216 current_buffer = VimBuffer( 'buffer' )
217 with MockVimBuffers( [ current_buffer ], [ current_buffer ] ):

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected