Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/ycm-core/YouCompleteMe
/ endpoints
Endpoints
161 in github.com/ycm-core/YouCompleteMe
⨍
Functions
902
◇
Types & classes
67
↳
Endpoints
161
Route
_CheckGoToList
patch( 'ycm.vimsupport.VariableExists', return_value = True )
python/ycm/tests/client/command_request_test.py:None
Route
test_BuildRequestData_AddWorkingDir
patch( 'ycm.client.base_request.GetCurrentDirectory', return_value = '/some/dir' )
python/ycm/tests/client/base_request_test.py:None
Route
test_BuildRequestData_AddWorkingDirWithFileName
patch( 'ycm.client.base_request.GetCurrentDirectory', return_value = '/some/dir' )
python/ycm/tests/client/base_request_test.py:None
Route
test_CurrentLineContents_EncodedUnicode
patch( 'vim.current.line', ToBytes( 'fДa' ) )
python/ycm/tests/vimsupport_test.py:None
Route
test_EventNotification_BufferVisit_BuildRequestForCurrentAndUnsavedBuffers
patch( 'ycm.youcompleteme.YouCompleteMe._AddUltiSnipsDataIfNeeded' )
python/ycm/tests/event_notification_test.py:None
Route
test_EventNotification_FileReadyToParse_NonDiagnostic_Error
patch( 'ycm.vimsupport.PostVimMessage', new_callable = ExtendedMock )
python/ycm/tests/event_notification_test.py:None
Route
test_EventNotification_FileReadyToParse_SyntaxKeywords_ClearCacheIfRestart
patch( 'ycm.vimsupport.CaptureVimCommand', return_value = """ fooGroup xxx foo bar links to State
python/ycm/tests/event_notification_test.py:None
Route
test_EventNotification_FileReadyToParse_SyntaxKeywords_SeedWithCache
patch( 'ycm.vimsupport.CaptureVimCommand', return_value = """ fooGroup xxx foo bar links to State
python/ycm/tests/event_notification_test.py:None
Route
test_EventNotification_FileReadyToParse_TagFiles_UnicodeWorkingDirectory
patch( 'ycm.youcompleteme.YouCompleteMe._AddUltiSnipsDataIfNeeded' )
python/ycm/tests/event_notification_test.py:None
Route
test_GetExtraDataUserMayHaveCompleted_EmptyUserData
patch( 'ycm.vimsupport.GetVariableValue', GetVariableValue_CompleteItemIs( 'Test', user_data='' ) )
python/ycm/tests/postcomplete_test.py:None
Route
test_GetExtraDataUserMayHaveCompleted_ReturnEmptyIfPendingMatches
patch( 'ycm.vimsupport.GetVariableValue', GetVariableValue_CompleteItemIs( 'Te' ) )
python/ycm/tests/postcomplete_test.py:None
Route
test_GetExtraDataUserMayHaveCompleted_ReturnMatchIfMatches
patch( 'ycm.vimsupport.GetVariableValue', GetVariableValue_CompleteItemIs( 'Test' ) )
python/ycm/tests/postcomplete_test.py:None
Route
test_GetExtraDataUserMayHaveCompleted_UseUserData0
patch( 'ycm.vimsupport.GetVariableValue', GetVariableValue_CompleteItemIs( 'Test',
python/ycm/tests/postcomplete_test.py:None
Route
test_GetExtraDataUserMayHaveCompleted_UseUserData1
patch( 'ycm.vimsupport.GetVariableValue', GetVariableValue_CompleteItemIs( 'Test',
python/ycm/tests/postcomplete_test.py:None
Route
test_HandlePollResponse_MultipleMessages
patch( 'ycm.client.messages_request.PostVimMessage', new_callable = ExtendedMock )
python/ycm/tests/client/messages_request_test.py:None
Route
test_HandlePollResponse_MultipleMessagesAndDiagnostics
patch( 'ycm.client.messages_request.PostVimMessage', new_callable = ExtendedMock )
python/ycm/tests/client/messages_request_test.py:None
Route
test_HandlePollResponse_SingleMessage
patch( 'ycm.client.messages_request.PostVimMessage', new_callable = ExtendedMock )
python/ycm/tests/client/messages_request_test.py:None
Route
test_InsertNamespace_append
patch( 'ycm.vimsupport.VariableExists', return_value = False )
python/ycm/tests/vimsupport_test.py:None
Route
test_InsertNamespace_insert
patch( 'ycm.vimsupport.VariableExists', return_value = False )
python/ycm/tests/vimsupport_test.py:None
Route
test_JumpToLocation_DifferentFile_NewOrExistingTab_AlreadyOpened
patch( 'vim.command', new_callable = ExtendedMock )
python/ycm/tests/vimsupport_test.py:None
Route
test_JumpToLocation_DifferentFile_NewOrExistingTab_NotAlreadyOpened
patch( 'vim.command', new_callable = ExtendedMock )
python/ycm/tests/vimsupport_test.py:None
Route
test_JumpToLocation_DifferentFile_NoCol
patch( 'vim.command', new_callable = ExtendedMock )
python/ycm/tests/vimsupport_test.py:None
Route
test_JumpToLocation_DifferentFile_NoLine
patch( 'vim.command', new_callable = ExtendedMock )
python/ycm/tests/vimsupport_test.py:None
Route
test_JumpToLocation_DifferentFile_NoLineCol
patch( 'vim.command', new_callable = ExtendedMock )
python/ycm/tests/vimsupport_test.py:None
Route
test_JumpToLocation_DifferentFile_SameBuffer_Modified_CanHide
patch( 'vim.command', new_callable = ExtendedMock )
python/ycm/tests/vimsupport_test.py:None
Route
test_JumpToLocation_DifferentFile_SameBuffer_Modified_CannotHide
patch( 'vim.command', new_callable = ExtendedMock )
python/ycm/tests/vimsupport_test.py:None
Route
test_JumpToLocation_DifferentFile_SameBuffer_SwapFile_Abort
patch( 'vim.command', new_callable = ExtendedMock, side_effect = [ None, KeyboardInterrupt
python/ycm/tests/vimsupport_test.py:None
Route
test_JumpToLocation_DifferentFile_SameBuffer_SwapFile_Quit
patch( 'vim.command', new_callable = ExtendedMock, side_effect = [ None, VimError( 'E325'
python/ycm/tests/vimsupport_test.py:None
Route
test_JumpToLocation_DifferentFile_SameBuffer_SwapFile_Unexpected
patch( 'vim.command', side_effect = [ None, VimError( 'Unknown code' ), None ] )
python/ycm/tests/vimsupport_test.py:None
Route
test_JumpToLocation_DifferentFile_SameBuffer_Unmodified
patch( 'vim.command', new_callable = ExtendedMock )
python/ycm/tests/vimsupport_test.py:None
Route
test_JumpToLocation_DifferentFile_Split_AllTabs_AlreadyOpened
patch( 'vim.command', new_callable = ExtendedMock )
python/ycm/tests/vimsupport_test.py:None
Route
test_JumpToLocation_DifferentFile_Split_AllTabs_NotAlreadyOpened
patch( 'vim.command', new_callable = ExtendedMock )
python/ycm/tests/vimsupport_test.py:None
Route
test_JumpToLocation_DifferentFile_Split_CurrentTab_AlreadyOpened
patch( 'vim.command', new_callable = ExtendedMock )
python/ycm/tests/vimsupport_test.py:None
Route
test_JumpToLocation_DifferentFile_Split_CurrentTab_AlreadyOpened_Case
patch( 'vim.command', new_callable = ExtendedMock )
python/ycm/tests/vimsupport_test.py:None
Route
test_JumpToLocation_DifferentFile_Split_CurrentTab_NotAlreadyOpened
patch( 'vim.command', new_callable = ExtendedMock )
python/ycm/tests/vimsupport_test.py:None
Route
test_JumpToLocation_SameFile_NoCol
patch( 'vim.command', new_callable = ExtendedMock )
python/ycm/tests/vimsupport_test.py:None
Route
test_JumpToLocation_SameFile_NoLine
patch( 'vim.command', new_callable = ExtendedMock )
python/ycm/tests/vimsupport_test.py:None
Route
test_JumpToLocation_SameFile_NoLineCol
patch( 'vim.command', new_callable = ExtendedMock )
python/ycm/tests/vimsupport_test.py:None
Route
test_JumpToLocation_SameFile_SameBuffer_NoSwapFile
patch( 'vim.command', new_callable = ExtendedMock )
python/ycm/tests/vimsupport_test.py:None
Route
test_OnCompleteDone_CsharpFixIt
patch( 'ycm.vimsupport.CurrentFiletypes', return_value = [ 'cs' ] )
python/ycm/tests/postcomplete_test.py:None
Route
test_OnCompleteDone_DefaultFixIt
patch( 'ycm.vimsupport.CurrentFiletypes', return_value = [ 'ycmtest' ] )
python/ycm/tests/postcomplete_test.py:None
Route
test_OnCompleteDone_NoFixItForOmnifunc
patch( 'ycm.vimsupport.CurrentFiletypes', return_value = [ 'ycmtest' ] )
python/ycm/tests/postcomplete_test.py:None
Route
test_OnCompleteDone_NoFixItIfNotDone
patch( 'ycm.vimsupport.CurrentFiletypes', return_value = [ 'ycmtest' ] )
python/ycm/tests/postcomplete_test.py:None
Route
test_OpenFilename
patch( 'vim.command', new_callable = ExtendedMock )
python/ycm/tests/vimsupport_test.py:None
Route
test_OpenLocationList
patch( 'ycm.vimsupport.VariableExists', return_value = True )
python/ycm/tests/vimsupport_test.py:None
Route
test_PostCompleteCsharp_EmptyDoesntInsertNamespace
patch( 'ycm.vimsupport.GetVariableValue', GetVariableValue_CompleteItemIs( 'Test' ) )
python/ycm/tests/postcomplete_test.py:None
Route
test_PostCompleteCsharp_ExistingWithoutNamespaceDoesntInsertNamespace
patch( 'ycm.vimsupport.GetVariableValue', GetVariableValue_CompleteItemIs( 'Test' ) )
python/ycm/tests/postcomplete_test.py:None
Route
test_PostCompleteCsharp_InsertSecondNamespaceIfSelected
patch( 'ycm.vimsupport.GetVariableValue', GetVariableValue_CompleteItemIs( 'Test' ) )
python/ycm/tests/postcomplete_test.py:None
Route
test_PostCompleteCsharp_ValueDoesInsertNamespace
patch( 'ycm.vimsupport.GetVariableValue', GetVariableValue_CompleteItemIs( 'Test' ) )
python/ycm/tests/postcomplete_test.py:None
Route
test_PostCompleteFixIt_ApplyFixIt_EmptyFixIt
patch( 'ycm.vimsupport.GetVariableValue', GetVariableValue_CompleteItemIs( 'Test' ) )
python/ycm/tests/postcomplete_test.py:None
Route
test_PostCompleteFixIt_ApplyFixIt_NoFixIt
patch( 'ycm.vimsupport.GetVariableValue', GetVariableValue_CompleteItemIs( 'Test' ) )
python/ycm/tests/postcomplete_test.py:None
Route
test_PostCompleteFixIt_ApplyFixIt_NoFixIts
patch( 'ycm.vimsupport.GetVariableValue', GetVariableValue_CompleteItemIs( 'Test' ) )
python/ycm/tests/postcomplete_test.py:None
Route
test_PostCompleteFixIt_ApplyFixIt_PickFirst
patch( 'ycm.vimsupport.GetVariableValue', GetVariableValue_CompleteItemIs( 'Test' ) )
python/ycm/tests/postcomplete_test.py:None
Route
test_PostCompleteFixIt_ApplyFixIt_PickFirstUserData
patch( 'ycm.vimsupport.GetVariableValue', GetVariableValue_CompleteItemIs( 'Test',
python/ycm/tests/postcomplete_test.py:None
Route
test_PostCompleteFixIt_ApplyFixIt_PickSecond
patch( 'ycm.vimsupport.GetVariableValue', GetVariableValue_CompleteItemIs( 'Test',
python/ycm/tests/postcomplete_test.py:None
Route
test_ReplaceChunk_AddTextInLine
patch( 'vim.current.window.cursor', ( 1, 1 ) )
python/ycm/tests/vimsupport_test.py:None
Route
test_ReplaceChunk_BeyondEndOfFile
patch( 'vim.current.window.cursor', ( 1, 1 ) )
python/ycm/tests/vimsupport_test.py:None
Route
test_ReplaceChunk_CursorPosition
patch( 'vim.current.window.cursor', ( 1, 3 ) )
python/ycm/tests/vimsupport_test.py:None
Route
test_ReplaceChunk_DeleteTextInLine
patch( 'vim.current.window.cursor', ( 1, 1 ) )
python/ycm/tests/vimsupport_test.py:None
Route
test_ReplaceChunk_MultipleLinesToEvenLessMultipleLines
patch( 'vim.current.window.cursor', ( 1, 1 ) )
python/ycm/tests/vimsupport_test.py:None
Route
test_ReplaceChunk_MultipleLinesToLessMultipleLines
patch( 'vim.current.window.cursor', ( 1, 1 ) )
python/ycm/tests/vimsupport_test.py:None
Route
test_ReplaceChunk_MultipleLinesToMoreMultipleLines
patch( 'vim.current.window.cursor', ( 1, 1 ) )
python/ycm/tests/vimsupport_test.py:None
Route
test_ReplaceChunk_MultipleLinesToSameMultipleLines
patch( 'vim.current.window.cursor', ( 1, 1 ) )
python/ycm/tests/vimsupport_test.py:None
Route
test_ReplaceChunk_MultipleLinesToSingleLine
patch( 'vim.current.window.cursor', ( 1, 1 ) )
python/ycm/tests/vimsupport_test.py:None
Route
test_ReplaceChunk_NewlineChunk
patch( 'vim.current.window.cursor', ( 1, 1 ) )
python/ycm/tests/vimsupport_test.py:None
Route
test_ReplaceChunk_RemoveSingleLine
patch( 'vim.current.window.cursor', ( 1, 1 ) )
python/ycm/tests/vimsupport_test.py:None
Route
test_ReplaceChunk_ReplaceTextInLine
patch( 'vim.current.window.cursor', ( 1, 1 ) )
python/ycm/tests/vimsupport_test.py:None
Route
test_ReplaceChunk_SingleLine_Add_1
patch( 'vim.current.window.cursor', ( 1, 1 ) )
python/ycm/tests/vimsupport_test.py:None
Route
test_ReplaceChunk_SingleLine_Add_2
patch( 'vim.current.window.cursor', ( 1, 1 ) )
python/ycm/tests/vimsupport_test.py:None
Route
test_ReplaceChunk_SingleLine_Add_3
patch( 'vim.current.window.cursor', ( 1, 1 ) )
python/ycm/tests/vimsupport_test.py:None
Route
test_ReplaceChunk_SingleLine_Del_1
patch( 'vim.current.window.cursor', ( 1, 1 ) )
python/ycm/tests/vimsupport_test.py:None
Route
test_ReplaceChunk_SingleLine_Del_2
patch( 'vim.current.window.cursor', ( 1, 1 ) )
python/ycm/tests/vimsupport_test.py:None
Route
test_ReplaceChunk_SingleLine_Del_3
patch( 'vim.current.window.cursor', ( 1, 1 ) )
python/ycm/tests/vimsupport_test.py:None
Route
test_ReplaceChunk_SingleLine_Repl_1
patch( 'vim.current.window.cursor', ( 1, 1 ) )
python/ycm/tests/vimsupport_test.py:None
Route
test_ReplaceChunk_SingleLine_Repl_2
patch( 'vim.current.window.cursor', ( 1, 1 ) )
python/ycm/tests/vimsupport_test.py:None
Route
test_ReplaceChunk_SingleLine_Repl_3
patch( 'vim.current.window.cursor', ( 1, 1 ) )
python/ycm/tests/vimsupport_test.py:None
Route
test_ReplaceChunk_SingleLine_Unicode_Grown
patch( 'vim.current.window.cursor', ( 1, 1 ) )
python/ycm/tests/vimsupport_test.py:None
Route
test_ReplaceChunk_SingleLine_Unicode_ReplaceAfterUnicode
patch( 'vim.current.window.cursor', ( 1, 1 ) )
python/ycm/tests/vimsupport_test.py:None
Route
test_ReplaceChunk_SingleLine_Unicode_ReplaceUnicodeChars
patch( 'vim.current.window.cursor', ( 1, 1 ) )
python/ycm/tests/vimsupport_test.py:None
Route
test_ReplaceChunk_SingleToMultipleLines
patch( 'vim.current.window.cursor', ( 1, 1 ) )
python/ycm/tests/vimsupport_test.py:None
Route
test_ReplaceChunk_SingleToMultipleLines2
patch( 'vim.current.window.cursor', ( 1, 1 ) )
python/ycm/tests/vimsupport_test.py:None
Route
test_ReplaceChunk_SingleToMultipleLines3
patch( 'vim.current.window.cursor', ( 1, 1 ) )
python/ycm/tests/vimsupport_test.py:None
Route
test_ReplaceChunk_SingleToMultipleLinesReplace
patch( 'vim.current.window.cursor', ( 1, 1 ) )
python/ycm/tests/vimsupport_test.py:None
Route
test_ReplaceChunk_SingleToMultipleLinesReplace_2
patch( 'vim.current.window.cursor', ( 1, 1 ) )
python/ycm/tests/vimsupport_test.py:None
Route
test_ReplaceChunk_SpanBufferEdge
patch( 'vim.current.window.cursor', ( 1, 1 ) )
python/ycm/tests/vimsupport_test.py:None
Route
test_ReplaceChunksInBuffer_LineOverlappingChunks
patch( 'vim.current.window.cursor', ( 1, 1 ) )
python/ycm/tests/vimsupport_test.py:None
Route
test_ReplaceChunksInBuffer_OneLineIndentingChunks
patch( 'vim.current.window.cursor', ( 1, 1 ) )
python/ycm/tests/vimsupport_test.py:None
Route
test_ReplaceChunksInBuffer_OutdentChunks
patch( 'vim.current.window.cursor', ( 1, 1 ) )
python/ycm/tests/vimsupport_test.py:None
Route
test_ReplaceChunksInBuffer_SameLocation
patch( 'vim.current.window.cursor', ( 1, 1 ) )
python/ycm/tests/vimsupport_test.py:None
Route
test_ReplaceChunksInBuffer_SortedChunks
patch( 'vim.current.window.cursor', ( 1, 1 ) )
python/ycm/tests/vimsupport_test.py:None
Route
test_ReplaceChunksInBuffer_UnsortedChunks
patch( 'vim.current.window.cursor', ( 1, 1 ) )
python/ycm/tests/vimsupport_test.py:None
Route
test_ReplaceChunks_MultiFile_Open
patch( 'vim.current.window.cursor', ( 1, 1 ) )
python/ycm/tests/vimsupport_test.py:None
Route
test_ReplaceChunks_SingleFile_NotOpen
patch( 'vim.current.window.cursor', ( 1, 1 ) )
python/ycm/tests/vimsupport_test.py:None
Route
test_ReplaceChunks_SingleFile_NotOpen_Silent
patch( 'vim.current.window.cursor', ( 1, 1 ) )
python/ycm/tests/vimsupport_test.py:None
Route
test_ReplaceChunks_SingleFile_Open
patch( 'vim.current.window.cursor', ( 1, 1 ) )
python/ycm/tests/vimsupport_test.py:None
Route
test_ReplaceChunks_User_Aborts_Opening_File
patch( 'vim.current.window.cursor', ( 1, 1 ) )
python/ycm/tests/vimsupport_test.py:None
Route
test_ReplaceChunks_User_Declines_To_Open_File
patch( 'vim.current.window.cursor', ( 1, 1 ) )
python/ycm/tests/vimsupport_test.py:None
Route
test_ResolveCompletionItem_NoUserData
patch( 'ycm.vimsupport.PostVimMessage', new_callable = ExtendedMock )
python/ycm/tests/completion_test.py:None
Route
test_ResolveCompletionRequest_Resolves
patch( 'ycm.client.base_request._logger', autospec = True )
python/ycm/tests/completion_test.py:None
Route
test_ResolveCompletionRequest_ResponseContainsErrors
patch( 'ycm.client.base_request._logger', autospec = True )
python/ycm/tests/completion_test.py:None
next →
1–100 of 161, ranked by callers