vim-ruby / vim-ruby

Vim/Ruby Configuration Files

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

do keyword and close bracket matching

amerov opened this issue · comments

Screenshot from 2019-10-08 02-14-21

reproduce:
go to do keyword in line 1; press %

code sample:

context 'webhooks' do
  before { allow_any_instance_of(described_class).to receive(:webhook_endpoint_active?).and_return(true) }

  it 'runs webhooks' do
    expect(Webhook::Runner).to receive(:deliver)
    subject
  end
end