Skip to content

Commit

Permalink
Clangd now returns a bucnh of stdlib suggestions we don't want to che…
Browse files Browse the repository at this point in the history
…ck for... sometimes
  • Loading branch information
puremourning committed Apr 17, 2023
1 parent 5ccce0e commit 3a052e6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions test/completion.common.vim
Original file line number Diff line number Diff line change
Expand Up @@ -339,16 +339,16 @@ function! Test_Completion_FixIt()
function! Check1( id )
call WaitForCompletion()
call CheckCurrentLine( 'do_a' )
call CheckCompletionItemsContainsExactly( [ 'do_a_thing(Thing thing)',
\ 'do_another_thing()' ] )
call CheckCompletionItemsHasItems( [ 'do_a_thing(Thing thing)',
\ 'do_another_thing()' ] )
call FeedAndCheckAgain( "\<Tab>" , funcref( 'Check2' ) )
endfunction

function! Check2( id )
call WaitForCompletion()
call CheckCurrentLine( 'do_a_thing' )
call CheckCompletionItemsContainsExactly( [ 'do_a_thing(Thing thing)',
\ 'do_another_thing()' ] )
call CheckCompletionItemsHasItems( [ 'do_a_thing(Thing thing)',
\ 'do_another_thing()' ] )
call FeedAndCheckAgain( '(' , funcref( 'Check3' ) )
endfunction

Expand Down

0 comments on commit 3a052e6

Please sign in to comment.